mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
merge revision(s) 58037: [Backport #10944]
docs for creating arrays * array.c: [DOC] add example for Array.new with block and index. Reported by Don Cruickshank. [ruby-core:68442] [Bug #10944] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@58163 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
64cf9f1153
commit
8dbfd4b86c
2 changed files with 3 additions and 2 deletions
3
array.c
3
array.c
|
@ -5592,7 +5592,8 @@ rb_ary_dig(int argc, VALUE *argv, VALUE self)
|
|||
* This method is safe to use with mutable objects such as hashes, strings or
|
||||
* other arrays:
|
||||
*
|
||||
* Array.new(4) { Hash.new } #=> [{}, {}, {}, {}]
|
||||
* Array.new(4) { Hash.new } #=> [{}, {}, {}, {}]
|
||||
* Array.new(4) {|i| i.to_s } #=> ["0", "1", "2", "3"]
|
||||
*
|
||||
* This is also a quick way to build up multi-dimensional arrays:
|
||||
*
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#define RUBY_VERSION "2.3.3"
|
||||
#define RUBY_RELEASE_DATE "2017-03-28"
|
||||
#define RUBY_PATCHLEVEL 272
|
||||
#define RUBY_PATCHLEVEL 273
|
||||
|
||||
#define RUBY_RELEASE_YEAR 2017
|
||||
#define RUBY_RELEASE_MONTH 3
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue