window method
Implementation
UByteReader window(int count) {
_require(count);
final UByteReader child = UByteReader(_bytes, start: _pos, end: _pos + count);
_pos += count;
return child;
}
UByteReader window(int count) {
_require(count);
final UByteReader child = UByteReader(_bytes, start: _pos, end: _pos + count);
_pos += count;
return child;
}