Most are aware of _'s special meaning in IRb as a holder for last return value, but that is not what I'm asking about here.
The _ can be used as a variable of sorts, with special connotations, akin to a "don't care variable". Here are some useful examples illustrating its unique behavior:
lambda { |x, x| 42 } # duplicated argument name
lambda { |_, _| 42 }.call(4, 2) # => 42
lambda { |_, _| 42 }.call(_, _) # undefined local variable or method `_'
lambda { |_| _ + 1 }.call(42) # => 43
lambda { |_, _| _ }.call(4, 2) # 1.8.7: => 2
# 1.9.3: => 4
_ = 42
_ * 100 # => 4200
_, _ = 4, 2; _ # => 2
These were all run in Ruby directly (with putss added in), not IRb, to avoid conflicting with its additional functionality.
This is all a result of my own experimentation though, as I can find no documentation on this behavior anywhere (admittedly it's not the easiest thing to search for). Ultimately, I'm curious how all of this works internally so I can better understand what it does in different circumstances. So I'm asking for references to documentation, and, preferably, the Ruby source code (and perhaps RubySpec) that reveal how _ behaves in Ruby.
Note: most of this arose out of this discussion with @Niklas B.
|_| _+1result in 43? – Joachim Isaksson Mar 4 '12 at 23:00