You\'re probably familiar with the following Ruby shorthand (a is an array):
a
a.map(&:method)
For example, try the followin
Short answer: No.
Following @rkon's answer, you could also do this:
a = [1,3,5,7,9] a.map &->(_) { _ + 2 } # => [3, 5, 7, 9, 11]