Expand description
The lexer.
Enums§
- Escape
Error - Errors and warnings that can occur during string unescaping.
- Lexer
Error - Kind of LexerError.
Functions§
- is_
id_ continue - True if
cis valid as a non-first character of an identifier. - is_
id_ start - True if
cis valid as a first character of an identifier. - is_
ident - The passed string is lexically an identifier.
- is_
whitespace - True if
cis considered a whitespace according to Rust language definition. - tokenize
- Creates an iterator that produces tokens from the input string.