Possible Duplicate:
What does map(&:name) mean in Ruby?
I was watching railscasts more virtual attributes episode. In that episode, at one point, ryan used a map method syntax which I am not able to understand, Could someone please explain it?
tags.map(&:name).join(' ')
tags is an object of Tag Model, which has a name attribute. I am able to understand the meaning of this(I think so :)). All the tag object's name attribute are retrieved as an array and joined based on the ' '. But whats the deal with &:name
Thanks
map(&:name)mean in Ruby?, What exactly is is this in ruby:&:capitalize, Ruby/Ruby on Rails ampersand colon shortcut, Ruby :&:symbolsyntax, … – Jörg W Mittag Mar 8 '11 at 17:53&:lastRuby Construct Called?, What do you call the&:operator in Ruby?, What doesmap(&:name)do in this Ruby code?, What are:+and&+in ruby?,&:views_countinPost.published.collect(&:views_count), Ruby Proc Syntax, How does “(1..4).inject(&:+)” work in Ruby. – Jörg W Mittag Mar 8 '11 at 17:54