readByte method

int readByte()

Reads a signed byte from the byte stream.

Implementation

int readByte() {
  _validate(1);
  return _getData().getInt8(_position++);
}