Bit array are a fixed-size mutable sequences (Sequence protocol) whose elements are either t or f. Each element only uses one bit of storage, hence the name.
Bit arrays play a special role in the C library interface; they can be used to pass binary data back and forth between Factor and C. See Passing pointers to C functions.