From: eregontp@... Date: 2019-04-08T18:35:50+00:00 Subject: [ruby-core:92211] [Ruby trunk Bug#15708] Implicit numbered argument decomposes an array Issue #15708 has been updated by Eregon (Benoit Daloze). FWIW, I would bet >99% of Rubyists would agree this is a bug: https://twitter.com/eregontp/status/1115318993299083265 ---------------------------------------- Bug #15708: Implicit numbered argument decomposes an array https://bugs.ruby-lang.org/issues/15708#change-77546 * Author: sawa (Tsuyoshi Sawada) * Status: Open * Priority: Normal * Assignee: * Target version: * ruby -v: 2.7.0dev * Backport: 2.4: UNKNOWN, 2.5: UNKNOWN, 2.6: UNKNOWN ---------------------------------------- In the following, `@1` refers to the entire item iterated: ```ruby a = [1, 2, 3] a.map{|x| x} # => [1, 2, 3] a.map{@1} # => [1, 2, 3] ``` whereas in the following, `@1` refers to the first item achieved by decomposing the item iterated, behaving the same as `x` given by `|(x)|` rather than by `|x|`: ```ruby a = [[1], [2], [3]] a.map{|x| x} # => [[1], [2], [3]] a.map{|(x)| x} # => [1, 2, 3] a.map{@1} # => [1, 2, 3] ``` Is this intended? -- https://bugs.ruby-lang.org/ Unsubscribe: