We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should make choice a bit more efficient still. todo!() needs to use some bits from ParseOrElse::eval
choice
todo!()
ParseOrElse::eval
impl<T> Parser<T> for Vec<Box<dyn Parser<T>>> { fn eval(&self, args: &mut State) -> Result<T, Error> { todo!() } fn meta(&self) -> Meta { let xs = self .iter() .filter_map(|p| match p.meta() { Meta::Skip => None, m => Some(m), }) .collect::<Vec<_>>(); if xs.is_empty() { Meta::Skip } else { Meta::Or(xs) } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Should make
choice
a bit more efficient still.todo!()
needs to use some bits fromParseOrElse::eval
The text was updated successfully, but these errors were encountered: