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

    Interface OrPattern

    A pattern that matches when any contained pattern matches.

    interface OrPattern {
        variant: "Or";
        patterns: readonly Pattern[];
    }
    Index
    variant: "Or"

    The discriminant.

    patterns: readonly Pattern[]

    The operands, any one of which may match.