writeBit method

void writeBit(
  1. bool state
)

Implementation

void writeBit(bool state) {
  allocateIfNeeded(1);
  _buffer.setBit(_i(), state);
}