get_ method
Gets a single byte from the buffer
Implementation
int get_() {
if (_pos >= _buf.length) {
throw RangeError('Buffer underflow');
}
return _buf[_pos++];
}
Gets a single byte from the buffer
int get_() {
if (_pos >= _buf.length) {
throw RangeError('Buffer underflow');
}
return _buf[_pos++];
}