writeByte method

void writeByte(
  1. int value
)

Implementation

void writeByte(int value) {
  _ensureCapacity(1);
  _byteBuffer[_position] = value & 0xFF;
  _position++;
}