Function peek
fn peek<I: Clone, F>(parser: F) -> impl Parser<I, Output = <F as Parser<I>>::Output, Error = <F as Parser<I>>::Error>
where
F: Parser<I>
Tries to apply its parser without consuming the input.
# use ;
use peek;
use alpha1;
#