double>bits ( x -- n )
Factor handbook » The language » Numbers » Floats » Bitwise operations on floats

Prev:float>bits ( x -- n )
Next:bits>float ( n -- x )


Vocabulary
math

Inputs
xa float


Outputs
na 64-bit integer representing an IEEE 754 double-precision float


Word description
Creates a 64-bit binary representation of a float object. This can be used in the process of writing a float to a stream.

See also
bits>double, bits>float, float>bits

Definition