Function success
fn success<I, O: Clone, E: ParseError<I>>(val: O) -> impl Parser<I, Output = O, Error = E>
a parser which always succeeds with given value without consuming any input.
It can be used for example as the last alternative in alt to
specify the default case.
# use ;
use alt;
use ;
use char;
#