peberminta - v0.10.0
    Preparing search index...

    Type Alias Match<TValue>

    Matched (successful) result from a Parser/Matcher.

    type Match<TValue> = {
        matched: true;
        position: number;
        value: TValue;
    }

    Type Parameters

    • TValue
    Index

    Properties

    matched: true
    position: number

    Parser position after this match.

    value: TValue

    Matched value.