Project

General

Profile

Actions

Backport #4196

closed

Array#flatten!(0) should return nil

Added by djberg96 (Daniel Berger) over 13 years ago. Updated almost 5 years ago.

Status:
Closed
Assignee:
-
[ruby-core:33841]

Description

=begin
Since Array#flatten!(0) does not modify the array I believe it should return nil. At the moment, in 1.8.7-p302, it returns itself.

irb(main):001:0> [1,[2,3,[4,5]]].flatten!(0)
=> [1, [2, 3, [4, 5]]]

Note that JRuby 1.5.6 returns nil for the above code, so either MRI is wrong or JRuby is wrong.
=end

Actions

Also available in: Atom PDF

Like0
Like0Like0