BUPKIS
    Preparing search index...

    Variable setSupersetAssertionConst

    setSupersetAssertion: AssertionFunctionSync<
        readonly [
            ZodCustom<Set<unknown>, Set<unknown>>,
            "to be a superset of",
            ZodCustom<Set<unknown>, Set<unknown>>,
        ],
        (superset: Set<unknown>, subset: Set<unknown>) => boolean,
        readonly [
            ZodCustom<Set<unknown>, Set<unknown>>,
            PhraseLiteralSlot<"to be a superset of">,
            ZodCustom<Set<unknown>, Set<unknown>>,
        ],
    > = ...

    Asserts that one Set is a superset of another.

    expect(new Set([1, 2, 3]), 'to be a superset of', new Set([1, 2])); // passes
    expect(new Set([1, 2]), 'to be a superset of', new Set([1, 2, 3])); // fails

    set-to-be-a-superset-of-set

    collections