readSByte method

int readSByte()

Implementation

int readSByte() {
  int val = _data[_position++];
  return val > 127 ? val - 256 : val;
}