ParsingStream.__anonymous

Members

Functions

skip
ParsingStream!T skip(Checker check)
ParsingStream!T skip()

Skip all characters until one doesn't match, for built-in chars, Unicode whitespace is the default.

skipOne
ParsingStream!T skipOne()

Skip one character, without matching.

skipStep
ParsingStream!T skipStep(Checker check)

Skip a single character if it matches. Params: check = Function to match against.

skipUntil
ParsingStream!T skipUntil(Checker check)

Skip all characters until one matches.

Meta