pub fn unpeek<'a, I, O, E>( peek: impl FnMut(I) -> IResult<I, O, E> + 'a ) -> impl Parser<I, O, E>
Convert a Parser::parse_peek style parse function to be a Parser
Parser::parse_peek
Parser