readByte method

int readByte()

Reads a byte value

@return the byte read

Implementation

int readByte() {
  int b = _bytesList[_readOffset++];
  return b;
}