readByte method

int readByte()

Implementation

int readByte() {
  checkBytesAvailable(1);
  return _data[_current++];
}