Method: Method#curry

Defined in:
lib/core/facets/method/curry.rb

#curry(*args) ⇒ Object

Curry a Method into a new Proc.



6
7
8
# File 'lib/core/facets/method/curry.rb', line 6

def curry(*args)
  to_proc.curry(*args)
end