SyntaxFix
Write A Post
Hire A Developer
Questions
There is also this one:
hash = { foo: "bar", baz: "qux" } hash.map(&:last) #=> ["bar", "qux"]
Why it works:
The & calls to_proc on the object, and passes it as a block to the method.
&
to_proc
something {|i| i.foo } something(&:foo)