From 5381e4d1c0023f5176a2ffe700e5e4d006435d11 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 4 Sep 2015 23:29:01 +0000 Subject: [PATCH] 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 --- ChangeLog | 5 +++++ hash.c | 7 +++++++ 2 files changed, 12 insertions(+) diff --git a/ChangeLog b/ChangeLog index 748fe0bc88..87f828e792 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Sep 5 08:28:58 2015 Nobuyoshi Nakada + + * hash.c (rb_hash_equal, rb_hash_eql): [DOC] the orders of each + hashes are not compared. [Bug #11508] + Fri Sep 4 23:26:22 2015 Nobuyoshi Nakada * include/ruby/win32.h: fix macro name for VC runtime version, diff --git a/hash.c b/hash.c index aecc68f1af..bc689a557f 100644 --- a/hash.c +++ b/hash.c @@ -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 true if hash and other are * both hashes with the same content. + * The orders of each hashes are not compared. */ static VALUE