IParseResult<T>


Interface for results returned from parse attempts.

Instance Properties


IsToken ➜ bool

Whether the result is a successful one or failure

Length ➜ int

Number of characters matched

Offset ➜ int

Where in the text the match began

Why ➜ string

Reason why a successful match was not made

Value ➜ T?

The token of a successful parse

Implemented By