fastParse method
Implementation
@override
bool fastParse(State<StringReader> state) {
final input = state.input;
while (state.pos < input.length) {
final c = input.readChar(state.pos);
if (!f(c)) {
break;
}
state.pos += input.count;
}
return true;
}