bit-array>integer ( bit-array -- n )
Bit arrays

Prev:integer>bit-array ( n -- bit-array )
Next:?{


Vocabulary
bit-arrays

Inputs
bit-arraya bit-array


Outputs
nan integer


Word description
Outputs the unsigned integer whose binary representation corresponds to the contents of the given bit array.

Notes
The bits of the integer are taken from the bit array in order of ascending significance, least significant bit first. This word is able to return fixnums or bignums of any size; it is not limited by fixnum size or machine word size.

Definition