matches method
Implementation
bool matches(List<int> pattern, {int delta = 0}) {
if (_pos + delta + pattern.length > _end) return false;
for (int i = 0; i < pattern.length; i++) {
if (bytes[_pos + delta + i] != pattern[i]) return false;
}
return true;
}