readByte method

int readByte()

Implementation

int readByte() {
  assert(offset + 1 <= byteLength);
  return buf.getInt8(offset++);
}