Module: ExAequo::Base::Function::ClassMethods
- Included in:
- ExAequo::Base::Function
- Defined in:
- lib/ex_aequo/base/function/class_methods.rb
Instance Method Summary collapse
Instance Method Details
#curried(*args, **kwds, &blk) ⇒ Object
7 8 9 |
# File 'lib/ex_aequo/base/function/class_methods.rb', line 7 def curried(*args, **kwds, &blk) new(Fn.curry(*args, **kwds, &blk), level: 3) end |
#sending(*args, **kwds, &blk) ⇒ Object
11 12 13 |
# File 'lib/ex_aequo/base/function/class_methods.rb', line 11 def sending(*args, **kwds, &blk) new(Fn.curry_send(*args, **kwds, &blk), level: 3) end |