| Class | Description |
|---|---|
| AndParser |
The and-predicate, a parser that succeeds whenever its delegate does, but does not consume the
input stream [Parr 1994, 1995].
|
| ChoiceParser |
A parser that uses the first parser that succeeds.
|
| DelegateParser |
A parser that delegates to another one.
|
| EndOfInputParser |
A parser that succeeds only at the end of the input stream.
|
| ListParser |
Abstract parser that parses a list of things in some way (to be specified by the subclasses).
|
| NotParser |
The not-predicate, a parser that succeeds whenever its delegate does not, but consumes no input
[Parr 1994, 1995].
|
| OptionalParser |
A parser that optionally parsers its delegate, or answers nil.
|
| SequenceParser |
A parser that parses a sequence of parsers.
|
| SettableParser |
A parser that can be set to behave like another parser.
|
Copyright © 2018 PetitParser. All rights reserved.