Equations
@[reducible, inline]
Parser α is a parser that consumes a ByteArray input using a ByteArray.Iterator and returns a result of type α.
Equations
Instances For
@[inline]
Parse a single byte equal to b, fails if different.
Equations
Instances For
@[inline]
Skip a single byte equal to b, fails if different.
Equations
Instances For
@[inline]
Parse a string by matching its UTF-8 bytes, returns the string on success.
Equations
Instances For
@[inline]
Skip a string by matching its UTF-8 bytes.
Equations
Instances For
@[inline]
Skip whitespace: tabs, newlines, carriage returns, and spaces.