BitArray.append

Push one bit to the bitarray.

class BitArray
void
append
(
uint bit
)
in { if (!(bit == 0 || bit == 1)) { throw new ValueError("Bit must be 0 or 1."); } }

Meta