[前][次][番号順一覧][スレッド一覧]

ruby-changes:26623

From: zzak <ko1@a...>
Date: Wed, 2 Jan 2013 02:28:59 +0900 (JST)
Subject: [ruby-changes:26623] zzak:r38674 (trunk): * hash.c (rb_hash_update): Revert documentation from r38672

zzak	2013-01-02 02:28:47 +0900 (Wed, 02 Jan 2013)

  New Revision: 38674

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=38674

  Log:
    * hash.c (rb_hash_update): Revert documentation from r38672
      See: https://github.com/ruby/ruby/pull/228#issuecomment-11791013

  Modified files:
    trunk/ChangeLog
    trunk/hash.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 38673)
+++ ChangeLog	(revision 38674)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Wed Jan 02 02:29:00 2012  Zachary Scott  <zachary@z...>
+
+	* hash.c (rb_hash_update): Revert documentation from r38672
+	  See: https://github.com/ruby/ruby/pull/228#issuecomment-11791013
+
 Wed Jan 02 02:16:00 2012  Zachary Scott  <zachary@z...>
 
 	* hash.c (rb_hash_update): Documentation for Hash#merge and shallow
Index: hash.c
===================================================================
--- hash.c	(revision 38673)
+++ hash.c	(revision 38674)
@@ -1893,19 +1893,6 @@ rb_hash_update_block_i(VALUE key, VALUE https://github.com/ruby/ruby/blob/trunk/hash.c#L1893
  *     h2 = { "b" => 254, "c" => 300 }
  *     h1.merge!(h2) { |key, v1, v2| v1 }
  *                     #=> {"a"=>100, "b"=>200, "c"=>300}
- *
- *  Note that this method creates a shallow copy of the value in _other_hash_.
- *  This means that when for example Array#select! is used on one of the values
- *  in _other_hash_ both the original object as well as the copy will be
- *  modified. This is illustrated in the following example:
- *
- *    original = { "numbers" => [10, 20, 30] }
- *    copy     = {}.merge(original)
- *
- *    copy["numbers"].select! { |number| number <= 20 }
- *
- *    puts copy     # => { "numbers" => [10, 20] }
- *    puts original # => { "numbers" => [10, 20] }
  */
 
 static VALUE

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]