Module: Crisp::Functions

Defined in:
lib/crisp/functions.rb,
lib/crisp/functions/core.rb,
lib/crisp/functions/array.rb,
lib/crisp/functions/arithmetic.rb

Defined Under Namespace

Classes: Arithmetic, Array, Core

Class Method Summary collapse

Class Method Details

.load(env) ⇒ Object

Load all defined function to the given environment



9
10
11
12
13
# File 'lib/crisp/functions.rb', line 9

def self.load(env)
  Core.load(env)
  Arithmetic.load(env)
  Array.load(env)
end