readByte method
Reads a signed byte from the byte stream.
Implementation
int readByte() {
_validate(1);
return _getData().getInt8(_position++);
}
Reads a signed byte from the byte stream.
int readByte() {
_validate(1);
return _getData().getInt8(_position++);
}