vote up 2 vote down star
1
  def tag_names
    @tag_names || tags.map(&:name).join(' ')
  end

Here's the article where I found it.

flag

3 Answers

vote up 9 vote down check

It's shorthand for tags.map(:name.to_proc).join(' ')

If foo is an object with a to_proc method, then you can pass it to a method as &foo, which will call foo.to_proc and use that as the method's block.

The Symbol#to_proc method was originally added by ActiveSupport but has been integrated into Ruby 1.8.7.

link|flag
This is a better answer than mine. – Oliver N. Aug 1 at 18:02
1  
tags.map(:name.to_proc) is itself a shorthand for tags.map { |tag| tag.name } – weppos Aug 1 at 18:05
vote up 3 vote down

It's equivalent to

def tag_names
  @tag_names || tags.map { |tag| tag.name }.join(' ')
end
link|flag
vote up 3 vote down

It's shorthand for tags.map { |tag| tag.name }.join(' ')

link|flag
Nope, it's in Ruby 1.8.7 and above. – Chuck Aug 1 at 17:41
Is it a simple idiom for map or Ruby always interpret the '&' in a particular way? – collimarco Aug 1 at 17:43
@Chuck thanks, reverted for correctness. – Oliver N. Aug 1 at 17:49
2  
@collimarco: As jleedev says in his answer, the unary & operator calls to_proc on its operand. So it's not specific to the map method, and in fact works on any method that takes a block and passes one or more arguments to the block. – Chuck Aug 1 at 18:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.