set-bits ( bit-array -- )
Bit arrays

Prev:<bit-array> ( n -- bit-array )
Next:clear-bits ( bit-array -- )


Vocabulary
bit-arrays

Inputs
bit-arraya bit-array


Outputs
None

Word description
Sets all elements of the bit array to t.

Notes
Calling this word is more efficient than the following:
[ drop t ] map! drop


Side effects
Modifies bit-array

Definition


Methods