BUPKIS
    Preparing search index...

    Variable setDisjointAssertionConst

    setDisjointAssertion: AssertionFunctionSync<
        readonly [
            ZodCustom<Set<unknown>, Set<unknown>>,
            "to be disjoint from",
            ZodCustom<Set<unknown>, Set<unknown>>,
        ],
        (setA: Set<unknown>, setB: Set<unknown>) => boolean,
        readonly [
            ZodCustom<Set<unknown>, Set<unknown>>,
            PhraseLiteralSlot<"to be disjoint from">,
            ZodCustom<Set<unknown>, Set<unknown>>,
        ],
    > = ...

    Asserts that two Sets are disjoint (have no common elements).

    expect(new Set([1, 2]), 'to be disjoint from', new Set([3, 4])); // passes
    expect(new Set([1, 2]), 'to be disjoint from', new Set([2, 3])); // fails

    set-to-be-disjoint-from-set

    collections