big.eql?(obj) â true or false Instance Public methods Returns true only if obj is a Bignum with the same value as big. Contrast this with Bignum#==, which performs type conversions. 68719476736.eql?(68719476736.0) #=> false
big.even? â true or false Instance Public methods Returns true if big is an even number.
big.fdiv(numeric) â float Instance Public methods Returns the floating point result of dividing big by numeric. -1234567890987654321.fdiv(13731) #=> -89910996357705.5 -1234567890987654321.fdiv(13731.24) #=> -89909424858035.7
big.hash â fixnum Instance Public methods Compute a hash based on the value of big.
inspect(p1 = v1) Instance Public methods Alias for: to_s
big.abs â aBignum Instance Public methods Returns the absolute value of big. -1234567890987654321.abs #=> 1234567890987654321
big.modulo(other) â Numeric Instance Public methods Returns big modulo other. See Numeric#divmod for more information.
big.odd? â true or false Instance Public methods Returns true if big is an odd number.
power!(p1) Instance Public methods Alias for: **
big.remainder(numeric) â number Instance Public methods Returns the remainder after dividing big by numeric. -1234567890987654321.remainder(13731) #=> -6966 -1234567890987654321.remainder(13731.24) #=> -9906.22531493148
Page 99 of 11844