Class: Arrow::Function

Inherits:
Object
  • Object
show all
Defined in:
lib/arrow/function.rb

Instance Method Summary collapse

Instance Method Details

#execute(args, options = nil, context = nil) ⇒ Object Also known as: call



21
22
23
24
# File 'lib/arrow/function.rb', line 21

def execute(args, options=nil, context=nil)
  options = resolve_options(options)
  execute_raw(args, options, context)
end

#execute_rawObject



20
# File 'lib/arrow/function.rb', line 20

alias_method :execute_raw, :execute