Actions
Bug #3552
closedMap doesn't accept multiple arguments for its block converted from lambda
Bug #3552:
Map doesn't accept multiple arguments for its block converted from lambda
Description
=begin
Following raises wrong number of arguments error:
irb(main):001:0> l=lambda{|x,y| x+y}
=> #<Proc:0x2b57820@(irb):1 (lambda)>
irb(main):002:0> [[1,2],[3,4]].map(&l)
ArgumentError: wrong number of arguments (1 for 2)
from (irb):2:in map' from (irb):2 from C:/Ruby191/bin/irb:12:in '
=end
Actions