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

    Interface NotPattern

    A pattern that matches when the inner pattern does not.

    interface NotPattern {
        variant: "Not";
        pattern: Pattern;
    }
    Index
    variant: "Not"

    The discriminant.

    pattern: Pattern

    The pattern that must not match.