Function value
fn value<I, O1: Clone, E: ParseError<I>, F>(val: O1, parser: F) -> impl Parser<I, Output = O1, Error = E>
where
F: Parser<I, Error = E>
Returns the provided value if the child parser succeeds.
# use ;
use value;
use alpha1;
#