~fix â integer Instance Public methods One's complement: returns a number where each bit is flipped.
float % other â float Instance Public methods Return the modulo after division of float by other. 6543.21.modulo(137) #=> 104.21 6543.21.modulo(137.24) #=> 92.9299999999996
float * other â float Instance Public methods Returns a new float which is the product of float and other.
**(other) Instance Public methods Exponentiate by other power!
float + other â float Instance Public methods Returns a new float which is the sum of float and other.
float - other â float Instance Public methods Returns a new float which is the difference of float and other.
-float â float Instance Public methods Returns float, negated.
float / other â float Instance Public methods Returns a new float which is the result of dividing float by other.
flt Instance Public methods true if flt is less than real. The result of NaN < NaN is undefined, so the implementation-dependent value is returned.
flt Instance Public methods true if flt is less than or equal to real. The result of NaN <= NaN is undefined, so the implementation-dependent value is returned.
Page 258 of 11844