Ruby Newbie homepage Ruby Newbie homepage

How to use

Quick guide

Official content
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).
Integer#=== is an alias for Integer#==.
 
               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;
}
            

Was this page useful?