Instance method
# <=
Returns true if the value of self is less than or equal to that of other:
How to use
Quick guide
Official content
Official how?
I scraped all this data from the official documentation. I created this site to make it easier for beginners and more pleasant for professionals to use Ruby.
Georgie boy
Creator of ruby-docs.org
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?
Leave your feedback
Please hit 'submit' to confirm your feedback.
Leave your feedback
Please hit 'submit' to confirm your feedback.