From #12705, yielding to method lambdas uses lambda/method arg semnatics
the yield to foo produces [:a, 1] suggesting that each is yielding two values yield key, value
but yield to bar produces [[:a, 1], 2] suggesting that each is yielding one value yield [key, value]
it would be better if you always knew what to expect from it
It was caused by the optimization introduced in 2.1. It should check if a block is a lambda before making optimization.
We worry about compatibility but let's fix it in 2.8(3.0) and see it can cause problems. Please mark the change as experimental .
hash.c: Do not use the fast path (rb_yield_values) for lambda blocks
As a semantics, Hash#each yields a 2-element array (pairs of keys and
values). So, { a: 1 }.each(&->(k, v) { }) should raise an exception
due to lambda's arity check.
However, the optimization that avoids Array allocation by using
rb_yield_values for blocks whose arity is more than 1 (introduced at
b9d29603375d17c3d1d609d9662f50beaec61fa1 and some commits), seemed to
overlook the lambda case, and wrongly allowed the code above to work.
This change experimentally attempts to make it strict; now the code
above raises an ArgumentError. This is an incompatible change; if the
compatibility issue is bigger than our expectation, it may be reverted
(until Ruby 3.0 release).
AFAIK it's not worth the incompatibility and could break many things.
We had to follow MRI behavior here for Hash#each and Hash#map in TruffleRuby, e.g., https://github.com/oracle/truffleruby/issues/1944
IMHO the right thing to do is to yield 2 values here, and having an Array for backward compatibility if arity != 2 seems OK.
I just ran into this since I hadn't been aware of this change.
What I find odd about this change is that it introduces a new inconsistency: the behavior of related Enumerable methods such as map is now different to that of each (in fact, isn't map implemented in terms of each at the VM level?)
Using the bug author's example, I find the following behavior in Ruby 3 at least equally surprising:
irb(main):058:0>{a: 1}.each(&foo_lambda)(irb):44:in`foo': wrong number of arguments (given 1, expected 2) (ArgumentError)
from (irb):58:in `each'
from (irb):58:in `<main>'from/home/mk/.rbenv/versions/3.0.2/lib/ruby/gems/3.0.0/gems/irb-1.3.5/exe/irb:11:in`<top (required)>'
from /home/mk/.rbenv/versions/3.0.2/bin/irb:23:in `load'
from /home/mk/.rbenv/versions/3.0.2/bin/irb:23:in `<main>'irb(main):059:0>irb(main):060:0>{a: 1}.map(&foo_lambda)[:a,1]=>[[:a,1]]