From: rubylang@... Date: 2015-03-06T14:41:25+00:00 Subject: [ruby-core:68442] [Ruby trunk - Bug #10944] [Open] Documentation of Array.new w.r.t. element index available to a block Issue #10944 has been reported by Don Cruickshank. ---------------------------------------- Bug #10944: Documentation of Array.new w.r.t. element index available to a block https://bugs.ruby-lang.org/issues/10944 * Author: Don Cruickshank * Status: Open * Priority: Normal * Assignee: * ruby -v: ruby 2.0.0p353 (2013-11-22 revision 43784) [i386-linux] * Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN ---------------------------------------- In http://ruby-doc.org/core-2.2.1/Array.html#class-Array-label-Creating+Arrays The documentation for the Array.new method is missing the fact that the element index is available to a given block. E.g. Array.new(4) { |x| x } #=> [0, 1, 2, 3] -- https://bugs.ruby-lang.org/