==

rat == object รข true or false
Instance Public methods

Returns true if rat equals object numerically.

Rational(2, 3)  == Rational(2, 3)   #=> true
Rational(5)     == 5                #=> true
Rational(0)     == 0.0              #=> true
Rational('1/3') == 0.33             #=> false
Rational('1/2') == '1/2'            #=> false
doc_ruby_on_rails
2015-05-01 03:42:51
Comments
Leave a Comment

Please login to continue.