diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-09-04 23:29:01 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-09-04 23:29:01 +0000 |
commit | 5381e4d1c0023f5176a2ffe700e5e4d006435d11 (patch) | |
tree | 1440470bf50d087b7a5fdb16fd647a07a26f2d7c /hash.c | |
parent | 39db484e030fd3484e30a2da787a953a58ff2088 (diff) | |
download | ruby-5381e4d1c0023f5176a2ffe700e5e4d006435d11.tar.gz |
hash.c: [DOC] orders do not matter [ci skip]
* hash.c (rb_hash_equal, rb_hash_eql): [DOC] the orders of each
hashes are not compared. [Bug #11508]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51763 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r-- | hash.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -2139,6 +2139,12 @@ hash_equal(VALUE hash1, VALUE hash2, int eql) * h2 == h3 #=> true * h3 == h4 #=> false * + * The orders of each hashes are not compared. + * + * h1 = { "a" => 1, "c" => 2 } + * h2 = { "c" => 2, "a" => 1 } + * h1 == h2 #=> true + * */ static VALUE @@ -2153,6 +2159,7 @@ rb_hash_equal(VALUE hash1, VALUE hash2) * * Returns <code>true</code> if <i>hash</i> and <i>other</i> are * both hashes with the same content. + * The orders of each hashes are not compared. */ static VALUE |