From: cremno@... Date: 2015-03-06T14:59:54+00:00 Subject: [ruby-core:68444] [Ruby trunk - Bug #10944] Documentation of Array.new w.r.t. element index available to a block Issue #10944 has been updated by cremno phobia. The actual `Array.new` documentation mentions and also provides an example for this: http://ruby-doc.org/core-2.2.1/Array.html#method-c-new (second code block) ---------------------------------------- Bug #10944: Documentation of Array.new w.r.t. element index available to a block https://bugs.ruby-lang.org/issues/10944#change-51789 * 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/