pub fn todo<Input, Output, Error>(input: &mut Input) -> PResult<Output, Error>where Input: Stream,
A placeholder for a not-yet-implemented Parser
Parser
This is analogous to the todo! macro and helps with prototyping.
todo!
This will panic when parsing
fn parser(input: &mut &str) -> PResult<u64> { todo(input) }