Module: Daitai::Reduce
- Included in:
- Daitai
- Defined in:
- lib/daitai/reduce.rb
Instance Method Summary collapse
Instance Method Details
#reduce ⇒ Object
5 6 7 8 9 |
# File 'lib/daitai/reduce.rb', line 5 def reduce lambda do |fn, acc, list| list.reduce(acc, &fn) end.curry end |