Ruby ampersand colon shortcut [duplicate]
Possible Duplicate: What does map(&:name) mean in Ruby? In Ruby, I know that if I do:some_objects.each(&:foo)It's the same assome_objects.each { |obj| obj.foo }That is, &:foo creates the block { |obj| obj.foo }, turns it into a Proc, and