Function verify
fn verify<I: Clone, O2, E: ParseError<I>, F, G>(first: F, second: G) -> impl Parser<I, Output = <F as Parser<I>>::Output, Error = E>
where
F: Parser<I, Error = E>,
G: Fn(&O2) -> bool,
<F as Parser<I>>::Output: Borrow<O2>,
O2: ?Sized
Returns the result of the child parser if it satisfies a verification function.
The verification function takes as argument a reference to the output of the parser.
# use ;
use verify;
use alpha1;
#