Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
27  
I have heard this called “pretzel colon”, by the way. – Josh Lee Oct 7 '10 at 20:40
1  
Haha. I know that as an Ampersand. I have never heard it called a "pretzel" but that makes sense. – DragonFax Feb 18 at 21:51

5 Answers

up vote 134 down vote accepted

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. This is its implementation:

class Symbol
  def to_proc
    Proc.new do |obj, *args|
      obj.send self, *args
    end
  end
end
share|improve this answer
11  
This is a better answer than mine. – Oliver N. Aug 1 '09 at 18:02
25  
tags.map(:name.to_proc) is itself a shorthand for tags.map { |tag| tag.name } – Simone Carletti Aug 1 '09 at 18:05
1  
this isn't valid ruby code, you still need the &, i.e tags.map(&:name.to_proc).join(' ') – banister Jun 25 '11 at 13:00
2  
Symbol#to_proc is implemented in C, not in Ruby, but that's what it'd look like in Ruby. – Andrew Grimm Jul 4 '11 at 2:46
1  
@AndrewGrimm it was first added in Ruby on Rails, using that code. It was then added as a native ruby feature in version 1.8.7. – Cameron Martin Feb 13 at 19:13
show 3 more comments

It's equivalent to

def tag_names
  @tag_names || tags.map { |tag| tag.name }.join(' ')
end
share|improve this answer

Another cool shorthand, unknown to many, is

array.each(&method(:foo))

which is a shorthand for

array.each { |element| foo(element) }
share|improve this answer
8  
array.each{|e| foo(e)} is shorter still :-) +1 anyways – Jared Beck May 16 '12 at 5:13
2  
@JaredBeck Yeap! Shorter but not point-free :) – Gerry Sep 30 '12 at 10:51

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

share|improve this answer
Nope, it's in Ruby 1.8.7 and above. – Chuck Aug 1 '09 at 17:41
Is it a simple idiom for map or Ruby always interpret the '&' in a particular way? – collimarco Aug 1 '09 at 17:43
@Chuck thanks, reverted for correctness. – Oliver N. Aug 1 '09 at 17:49
5  
@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 '09 at 18:11

While let us also note that ampersand #to_proc magic can work with any class, not just Symbol. Many Rubyists choose to define #to_proc on Array class:

class Array
  def to_proc
    proc { |receiver| receiver.send *self }
  end
end

# And then...

[ 'Hello', 'Goodbye' ].map &[ :+, ' world!' ]
#=> ["Hello world!", "Goodbye world!"]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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