Method: Hash#eql?
- Defined in:
- hash.c
#eql?(object) ⇒ Boolean
Returns true if all of the following are true:
-
objectis aHashobject. -
hashandobjecthave the same keys (regardless of order). -
For each key
key,h[key].eql?(object[key]).
Otherwise, returns false.
h1 = {foo: 0, bar: 1, baz: 2}
h2 = {foo: 0, bar: 1, baz: 2}
h1.eql? h2 # => true
h3 = {baz: 2, bar: 1, foo: 0}
h1.eql? h3 # => true
3846 3847 3848 3849 3850 |
# File 'hash.c', line 3846
static VALUE
rb_hash_eql(VALUE hash1, VALUE hash2)
{
return hash_equal(hash1, hash2, TRUE);
}
|