Skip to content

Commit

Permalink
* array.c (rb_ary_initialize): Add output for examples. Patch by
Browse files Browse the repository at this point in the history
	  Jonathan Mukai.  [Ruby 1.9 - Bug ruby#5216]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33388 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
drbrain committed Oct 3, 2011
1 parent aec0f80 commit cb01476
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Tue Oct 4 07:35:23 2011 Eric Hodel <[email protected]>

* array.c (rb_ary_initialize): Add output for examples. Patch by
Jonathan Mukai. [Ruby 1.9 - Bug #5216]

Tue Oct 4 07:30:50 2011 Eric Hodel <[email protected]>

* array.c (rb_ary_s_create): Add example results for Array::[]. Patch
Expand Down
21 changes: 11 additions & 10 deletions array.c
Original file line number Diff line number Diff line change
Expand Up @@ -516,26 +516,27 @@ rb_ary_s_try_convert(VALUE dummy, VALUE ary)
* calculated by passing the element's index to the given block and
* storing the return value.
*
* Array.new
* Array.new(2)
* Array.new(5, "A")
* Array.new # => [] (empty array)
* Array.new(2) # => [nil,nil]
* Array.new(5, "A") # => ["A", "A", "A", "A", "A"]
* Array.new(5) {|i| i.to_s } # => ["0", "1", "2", "3", "4"]
*
* # only one copy of the object is created
* a = Array.new(2, Hash.new)
* a = Array.new(2, Hash.new) #=> [{}, {}]
* a[0]['cat'] = 'feline'
* a
* a # => [{"cat"=>"feline"}, {"cat"=>"feline"}]
* a[1]['cat'] = 'Felix'
* a
* a # => [{"cat"=>"Felix"}, {"cat"=>"Felix"}]
*
* # here multiple copies are created
* a = Array.new(2) { Hash.new }
* a = Array.new(2) { Hash.new } # => [{}, {}]
* a[0]['cat'] = 'feline'
* a
* a # => [{"cat"=>"feline"}, {}]
*
* squares = Array.new(5) {|i| i*i}
* squares
* squares # => [0, 1, 4, 9, 16]
*
* copy = Array.new(squares)
* copy = Array.new(squares) # => [0, 1, 4, 9, 16]
*/

static VALUE
Expand Down

0 comments on commit cb01476

Please sign in to comment.