Home
last modified time | relevance | path

Searched refs:take_till (Results 1 – 7 of 7) sorted by relevance

/external/rust/crates/nom/src/bytes/
Dtests.rs418 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)
Dstreaming.rs343 pub fn take_till<F, Input, Error: ParseError<Input>>( in take_till() function
Dcomplete.rs330 pub fn take_till<F, Input, Error: ParseError<Input>>( in take_till() function
/external/rust/crates/nom/tests/
Dini_str.rs2 bytes::complete::{is_a, tag, take_till, take_while},
34 let (i, val) = take_till(is_line_ending_or_comment)(i)?; in key_value()
Dissues.rs74 use nom::bytes::streaming::take_till; in take_till_issue()
77 take_till(|_| true)(i) in take_till_issue()
/external/rust/crates/nom/src/
Dstr.rs6 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/
DCHANGELOG.md1020 - `take_till!` now imports `InputLength` instead of assuming it's in scope
1212 - implementation of `take_till!`, `take_while!` and `take_while1!`