Expand description
Parsers recognizing bytes streams
Modules§
- Parsers recognizing bytes streams, complete input version
- Parsers recognizing bytes streams, streaming version
Structs§
- Parser implementation for escaped
- Parser implementation for escaped_transform
- Parser wrapper for
split_at_position
- Parser wrapper for
split_at_position1
- Tag implementation
- Case insensitive Tag implementation
- Parser implementation for take
- Parser implementation for take_until
- Parser implementation for take_until1
- Parser implementation for take_while_m_n
Functions§
- Matches a byte string with escaped characters.
- Matches a byte string with escaped characters.
- Returns the longest slice of the matches the pattern.
- Parse till certain characters are met.
- Recognizes a pattern.
- Recognizes a case insensitive pattern.
- Returns an input slice containing the first N input elements (Input[..N]).
- Returns the longest input slice (if any) till a predicate is met.
- Returns the longest (at least 1) input slice till a predicate is met.
- Returns the input slice up to the first occurrence of the pattern.
- Returns the non empty input slice up to the first occurrence of the pattern.
- Returns the longest input slice (if any) that matches the predicate.
- Returns the longest (at least 1) input slice that matches the predicate.
- Returns the longest (m <= len <= n) input slice that matches the predicate.