I found this code in a RailsCast:
def tag_names
@tag_names || tags.map(&:name).join(' ')
end
what does the (&:name) in map(&:name) mean?
|
I found this code in a RailsCast:
what does the |
||||
|
It's shorthand for If The
|
|||||||||||||||||||||
|
|
It's equivalent to
|
|||
|
|
|
Another cool shorthand, unknown to many, is
which is a shorthand for
|
|||||||||||
|
|
It's shorthand for |
|||||||||||
|
|
While let us also note that ampersand
|
|||
|
|
tags.map &:namefor the extra shortest entry. – itsnikolay Jun 10 at 7:40