@blockchaincommons/dcbor-pattern - v1.0.0-beta.2
    Preparing search index...

    Interface RepeatPattern

    A pattern repeated according to a quantifier.

    interface RepeatPattern {
        variant: "Repeat";
        pattern: Pattern;
        quantifier: Quantifier;
    }
    Index
    variant: "Repeat"

    The discriminant.

    pattern: Pattern

    The repeated pattern.

    quantifier: Quantifier

    How many repetitions are allowed, and how eagerly they are taken.