combine::parser::char

Function char

Source
pub fn char<I>(c: char) -> Token<I>
where I: Stream<Item = char>, I::Error: ParseError<I::Item, I::Range, I::Position>,
Expand description

Parses a character and succeeds if the character is equal to c.

use combine::Parser;
use combine::parser::char::char;
assert_eq!(char('!').parse("!"), Ok(('!', "")));
assert!(char('A').parse("!").is_err());