add method

void add(
  1. int byte
)

Implementation

void add(int byte) {
  _ensureCanAdd(1);
  _buffer[_usedLength] = byte;
  _usedLength += 1;
}