readByte method
Reads and returns a single byte from the stream.
Implementation
int readByte() {
checkBytesAvailable(1);
return _data[_current++];
}
Reads and returns a single byte from the stream.
int readByte() {
checkBytesAvailable(1);
return _data[_current++];
}