putByte method

void putByte(
  1. int s
)

Implementation

void putByte(int s) {
  _ensureCapacity(1);
  _stream[_offset++] = s;
}