bytes library

Classes

NoneOfTags
Parses tags and returns success if parsing was unsuccessful.
SkipWhile
Parses while predicate satisfies the criteria, and returns true.
SkipWhile1
Parses while predicate satisfies the criteria, and returns true if the criteria was satisfied at least once.
Tag
Parses tag and returns tag.
TagNoCase
Parses tag case-insensitively with the convert function and returns tag.
TagOf
Tags
Parses tags one by one and returns the first arguments found.
TagValues<O>
Parses the keys from hash table table as tags and returns the corresponding value from hash table table.
TakeUntil
Parses until the first occurrence of a tag is found and returns a substring up to the found tag.
TakeUntil1
Parses until the first occurrence of a tag is found, and returns a substring up to the found tag if the substring is not empty.
TakeWhile
Parses while predicate satisfies the criteria and returns a substring of the parsed data.
TakeWhile1
Parses while predicate satisfies the criteria and returns a substring of the parsed data if the criteria was satisfied at least once.
TakeWhileMN
Parses while predicate satisfies the criteria and returns a substring of the parsed data if the criteria were satisfied m to n times.