Method: Transproc::Function#compose
- Defined in:
- lib/transproc/function.rb
#compose(other) ⇒ Composite Also known as: +, >>
Compose this function with another function or a proc
62 63 64 |
# File 'lib/transproc/function.rb', line 62 def compose(other) Composite.new(self, other) end |