Method: Transproc::Composite#call

Defined in:
lib/transproc/composite.rb

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

Call right side with the result from the left side

Parameters:

  • value (Object)

    The input value

Returns:

  • (Object)


29
30
31
# File 'lib/transproc/composite.rb', line 29

def call(value)
  right.call(left.call(value))
end