Vocabularymath.
bitsInputsOutputsWord descriptionCreates a sequence of
bits in ascending significance. Throws an error on negative numbers.
ExamplesUSING: math.bits prettyprint arrays ;
0b1101 make-bits >array .
{ t f t t }
USING: math.bits prettyprint arrays ;
64 make-bits >array .
{ f f f f f f t }
See alsobits>numberDefinition