Function into
fn into<I, O1, O2, E1, E2, F>(parser: F) -> impl Parser<I, Output = O2, Error = E2>
where
O2: From<O1>,
E2: From<E1> + ParseError<I>,
E1: ParseError<I>,
F: Parser<I, Output = O1, Error = E1>
automatically converts the child parser's result to another type
it will be able to convert the output value and the error value
as long as the Into implementations are available
# use ;
use into;
use alpha1;
#