Method: Integer#==
- Defined in:
- numeric.c
#==(other) ⇒ Boolean
Returns true
if self
is numerically equal to other
; false
otherwise.
1 == 2 #=> false
1 == 1.0 #=> true
Related: Integer#eql? (requires other
to be an Integer).
4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 |
# File 'numeric.c', line 4697 VALUE rb_int_equal(VALUE x, VALUE y) { if (FIXNUM_P(x)) { return fix_equal(x, y); } else if (RB_BIGNUM_TYPE_P(x)) { return rb_big_eq(x, y); } return Qnil; } |