Method: Object#===
- Defined in:
- object.c
#===(other) ⇒ Boolean
Case Equality – For class Object, effectively the same as calling #==, but typically overridden by descendants to provide meaningful semantics in case statements.
88 89 90 91 92 93 94 95 96 97 |
# File 'object.c', line 88
VALUE
rb_equal(VALUE obj1, VALUE obj2)
{
VALUE result;
if (obj1 == obj2) return Qtrue;
result = rb_funcall(obj1, id_eq, 1, obj2);
if (RTEST(result)) return Qtrue;
return Qfalse;
}
|