Ruby Newbie homepage Ruby Newbie homepage

How to use

Quick guide

Official content
Returns true if the value of self is less than or equal to that of other:
1 <= 0              # => false
1 <= 1              # => true
1 <= 2              # => true
1 <= 0.5            # => false
1 <= Rational(1, 2) # => false
Raises an exception if the comparison cannot be made.
 
               static VALUE
int_le(VALUE x, VALUE y)
{
    if (FIXNUM_P(x)) {
        return fix_le(x, y);
    }
    else if (RB_BIGNUM_TYPE_P(x)) {
        return rb_big_le(x, y);
    }
    return Qnil;
}
            

Was this page useful?