pub fn satisfy<F, S>(predicate: F, label: S) -> Parser<char> where
    F: 'static + Fn(char) -> bool,
    S: Into<String>, 
Expand description

Call the given predicate on the next character. If it returns true, consume the character.