Function not
fn not<I: Clone, E: ParseError<I>, F>(parser: F) -> impl Parser<I, Output = (), Error = E>
where
F: Parser<I, Error = E>
Succeeds if the child parser returns an error.
# use ;
use not;
use alpha1;
#
notfn not<I: Clone, E: ParseError<I>, F>(parser: F) -> impl Parser<I, Output = (), Error = E>
where
F: Parser<I, Error = E>
Succeeds if the child parser returns an error.
# use ;
use not;
use alpha1;
#