Tagged Questions

1
vote
1answer
47 views

Why isn’t the Ruby 1.9 lambda call possible without the dot in front of the parens?

I checked out the latest Ruby version, to play a bit with the latest changes. The first thing I tried to do was call a Ruby lambda/block/proc just like you'd do with a Python callable. a = lambda …
2
votes
3answers
56 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 …
3
votes
3answers
276 views

Python - Passing a function into another function

I am solving a puzzle using python and depending on which puzzle I am solving I will have to use a special set of rules. How can I pass a function into another function in Python? Example def …