Tagged Questions
2
votes
3answers
72 views
How can I get a reference to a method that contains the arguments used for invocations, in Ruby?
Given this code:
a = {1=>2}
m = a.method(:[])
I know that I can now use :
value = m.call(1)
and it will return 2. The thing is, what do I need to change so that I can call the method directly ...