which does the job with the downside of only reporting argument mismatches when the returned Proc is called.
irb(main):004:0> foo3 = foo.bind(1).bind(2).bind(3)
=> #<Proc:0x007fc9378bcb00@(irb):3 (lambda)>
irb(main):005:0> foo.call
ArgumentError: wrong number of arguments (given 0, expected 2)
from (irb):6:in `block in irb_binding'
from (irb):35
from /usr/local/bin/irb:11:in `<main>'
Could you show a real Ruby application or code which you can write more effectively if we have partial application?
The use case is similar to that of Proc#curry, but I'd agree that typical Ruby code doesn't rely on Procs much. The lack of partial application on Proc just seemed like an odd omission.
The particular code I was writing that led to this implemented pagination by returning the current page of results and a proc to fetch the next page.