pub enum StateChar {
Char(char),
Eof,
}
Expand description
Represents a set of characters that can include an end-of-file marker without having the marker one of the characters.
pub enum StateChar {
Char(char),
Eof,
}
Represents a set of characters that can include an end-of-file marker without having the marker one of the characters.