Provides a curry method that can be mixed in to classes that make sense with currying. Depends on self implementing a call method.
Methods
Public Instance methods
Create a new curried proc from this curriable, using the supplied spice.
[ show source ]
# File lib/curry.rb, line 274
274: def curry(*spice)
275: Curry.new(self, *spice)
276: end