menu
parser_combinator package
documentation
parser/predicate.dart
isWhitespace function
isWhitespace function
dark_mode
light_mode
isWhitespace
function
bool
isWhitespace
(
int
c
)
Implementation
bool isWhitespace(int c) => c == 0x9 || c == 0xa || c == 0xd || c == 0x20;
parser_combinator package
documentation
parser/predicate
isWhitespace function
predicate library