Instance method
# ==
Returns true if self is numerically equal to other; false otherwise.
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 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?
Leave your feedback
Please hit 'submit' to confirm your feedback.
Leave your feedback
Please hit 'submit' to confirm your feedback.