get_ method

int get_()

Gets a single byte from the buffer

Implementation

int get_() {
  if (_pos >= _buf.length) {
    throw RangeError('Buffer underflow');
  }
  return _buf[_pos++];
}