Lines Matching refs:slice

98 /// The parser will return the longest slice till one of the characters of the combinator's argument are met.
130 /// Returns the longest slice of the matches the pattern.
132 /// The parser will return the longest slice consisting of the characters in provided in the
166 /// Returns the longest input slice (if any) that matches the predicate.
168 /// The parser will return the longest slice that matches the given predicate *(a function that
198 /// Returns the longest (at least 1) input slice that matches the predicate.
200 /// The parser will return the longest slice that matches the given predicate *(a function that
235 /// Returns the longest (m <= len <= n) input slice that matches the predicate.
237 /// The parser will return the longest slice that matches the given predicate *(a function that
320 /// Returns the longest input slice (if any) till a predicate is met.
322 /// The parser will return the longest slice till the given predicate *(a function that
353 /// Returns the longest (at least 1) input slice till a predicate is met.
355 /// The parser will return the longest slice till the given predicate *(a function that
388 /// Returns an input slice containing the first N input elements (Input[..N]).
425 /// Returns the input slice up to the first occurrence of the pattern.
464 /// Returns the non empty input slice up to the first occurrence of the pattern.
569 match escapable.parse(i.slice(next..)) {
658 let remainder = i.slice(index..);
679 match transform.parse(i.slice(next..)) {