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