Method: Transproc::Function#call

Defined in:
lib/transproc/function.rb

#call(*value) ⇒ Object Also known as: []

Call the wrapped proc

Parameters:

  • The input value

API:

  • public



46
47
48
# File 'lib/transproc/function.rb', line 46

def call(*value)
  fn.call(*value, *args)
end