Searched refs:take_till (Results 1 – 7 of 7) sorted by relevance
/external/rust/crates/nom/src/bytes/ |
D | tests.rs | 418 fn take_till() { 419 use crate::bytes::streaming::take_till; 422 take_till(is_alphabetic)(i) 480 use crate::bytes::streaming::take_till; 483 take_till(|c| c == '點')(i) 492 take_till(|c| c != '點')(i)
|
D | streaming.rs | 343 pub fn take_till<F, Input, Error: ParseError<Input>>( in take_till() function
|
D | complete.rs | 330 pub fn take_till<F, Input, Error: ParseError<Input>>( in take_till() function
|
/external/rust/crates/nom/tests/ |
D | ini_str.rs | 2 bytes::complete::{is_a, tag, take_till, take_while}, 34 let (i, val) = take_till(is_line_ending_or_comment)(i)?; in key_value()
|
D | issues.rs | 74 use nom::bytes::streaming::take_till; in take_till_issue() 77 take_till(|_| true)(i) in take_till_issue()
|
/external/rust/crates/nom/src/ |
D | str.rs | 6 bytes::complete::{is_a, is_not, tag, take, take_till, take_until}, 207 take_till(till_s)(input) in take_till_s_succeed()
|
/external/rust/crates/nom/ |
D | CHANGELOG.md | 1020 - `take_till!` now imports `InputLength` instead of assuming it's in scope 1212 - implementation of `take_till!`, `take_while!` and `take_while1!`
|