pub fn todo<I, O, E>(input: I) -> IResult<I, O, E>where
I: Stream,
Expand description
A placeholder for a not-yet-implemented Parser
This is analogous to the todo!
macro and helps with prototyping.
This will panic when parsing
fn parser(input: &str) -> IResult<&str, u64> {
todo(input)
}