Expand description
Parsers recognizing bytes streams, complete input version
Functionsยง
- escaped
Deprecated - Matches a byte string with escaped characters.
- escaped_
transform Deprecated - Matches a byte string with escaped characters.
- is_a
Deprecated - Returns the longest slice of the matches the pattern.
- is_not
Deprecated - Parse till certain characters are met.
- tag
Deprecated - Recognizes a pattern
- tag_
no_ case Deprecated - Recognizes a case insensitive pattern.
- take
Deprecated - Returns an input slice containing the first N input elements (Input[..N]).
- take_
till Deprecated - Returns the longest input slice (if any) till a predicate is met.
- take_
till1 Deprecated - Returns the longest (at least 1) input slice till a predicate is met.
- take_
until Deprecated - Returns the input slice up to the first occurrence of the pattern.
- take_
until1 Deprecated - Returns the non empty input slice up to the first occurrence of the pattern.
- take_
while Deprecated - Returns the longest input slice (if any) that matches the predicate.
- take_
while1 Deprecated - Returns the longest (at least 1) input slice that matches the predicate.
- take_
while_ m_ n Deprecated - Returns the longest (m <= len <= n) input slice that matches the predicate.