pub fn char<I>(c: char) -> Token<I>
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());