Expand description
Parsers recognizing bytes streams, streaming version
Functions
- escapedDeprecatedMatches a byte string with escaped characters.
- escaped_transformDeprecatedMatches a byte string with escaped characters.
- is_aDeprecatedReturns the longest slice of the matches the pattern.
- is_notDeprecatedParse till certain characters are met.
- tagDeprecatedRecognizes a pattern.
- tag_no_caseDeprecatedRecognizes a case insensitive pattern.
- takeDeprecatedReturns an input slice containing the first N input elements (Input[..N]).
- take_tillDeprecatedReturns the longest input slice (if any) till a predicate is met.
- take_till1DeprecatedReturns the longest (at least 1) input slice till a predicate is met.
- take_untilDeprecatedReturns the input slice up to the first occurrence of the pattern.
- take_until1DeprecatedReturns the non empty input slice up to the first occurrence of the pattern.
- take_whileDeprecatedReturns the longest input slice (if any) that matches the predicate.
- take_while1DeprecatedReturns the longest (at least 1) input slice that matches the predicate.
- take_while_m_nDeprecatedReturns the longest (m <= len <= n) input slice that matches the predicate.