-
Notifications
You must be signed in to change notification settings - Fork 835
Open
Milestone
Description
Prerequisites
Here are a few things you should provide to help me understand the issue:
- Rust version : 1.55
- nom version : 7.0.0
- nom compilation features used: default
Test case
Please provide a short, complete (with crate import, etc) test case for
the issue, showing clearly the expected and obtained results.
Example test case:
use nom::{
branch, bytes::complete as bytes, character::complete as character, combinator, multi,
sequence, AsChar, IResult as Outcome,
};
pub(crate) fn dec_int(input: &str) -> IResult<&str, &str> {
combinator::recognize(sequence::tuple((
combinator::opt(multi::alt((character::char('+'), character::char('-')))),
multi::alt((
character::char('0'),
combinator::map(
sequence::tuple((
character::satisfy(|c| ('1'..='9').contains(&c)),
multi::take_while(is_dec_digit_with_sep),
)),
|t| t.0,
),
)),
)))(input)
}
@Stargateur said
I could see a world where we inverse
foo::complete
andfoo::streaming
forcomplete::foo
andstreaming::foo
this make sense cause:* I don't think there is a case where in the same parser you mix complete and streaming * This allow to reduce the number of page in doc * This remove the need to write `bytes::complete as bytes` * Would allow people to import every `complete` or `streaming` modules in one line `complete::*` * Allow to more easily import module by reducing the fragmentation `complete::{foo, bar, baz}` vs `{foo::complete as foo, bar::complete as bar, baz::complete as baz`
Forked from #1408
Metadata
Metadata
Assignees
Labels
No labels