Type:
Class

When mathn is required, Fixnum's division and exponentiation are enhanced to return more precise values from mathematical expressions.

2/3*3  # => 0
require 'mathn'
2/3*3  # => 2

A Fixnum holds Integer values that can be represented in a native machine word (minus 1 bit). If any operation on a Fixnum exceeds this range, the value is automatically converted to a Bignum.

Fixnum objects have immediate value. This means that when they are assigned or passed as parameters, the actual object is passed, rather than a reference to that object. Assignment does not alias Fixnum objects. There is effectively only one Fixnum object instance for any given integer value, so, for example, you cannot add a singleton method to a Fixnum.

[]

fix[n] â 0, 1 Instance Public methods Bit ReferenceâReturns the nth

2015-04-06 23:24:12
>

fix > real â true or false Instance Public methods Returns true

2015-04-06 23:06:38
-@

-fix â integer Instance Public methods Negates fix (which might

2015-04-06 22:38:25
**

**(other) Instance Public methods Exponentiate by other

2015-04-06 22:22:12
succ

fixnum.next â integerfixnum.succ â integer Instance Public methods Returns

2015-04-07 00:25:45
<<

fix Instance Public methods Shifts fix

2015-04-06 22:48:14
magnitude

fix.magnitude â integer Instance Public methods Returns the absolute value

2015-04-07 00:12:12
zero?

fix.zero? â true or false Instance Public methods Returns true

2015-04-07 00:37:56
/ 2

fix / numeric â numeric_result Instance Public methods Performs division:

2015-04-06 22:39:31
<

fix Instance Public methods Returns true

2015-04-06 22:45:02