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

    Interface AndPattern

    A pattern that matches when every contained pattern matches.

    interface AndPattern {
        variant: "And";
        patterns: readonly Pattern[];
    }
    Index
    variant: "And"

    The discriminant.

    patterns: readonly Pattern[]

    The operands, every one of which must match.