BUPKIS
    Preparing search index...

    Variable setIntersectionAssertionConst

    setIntersectionAssertion: AssertionFunctionSync<
        readonly [
            ZodCustom<Set<unknown>, Set<unknown>>,
            "to intersect with",
            ZodCustom<Set<unknown>, Set<unknown>>,
        ],
        (setA: Set<unknown>, setB: Set<unknown>) => boolean,
        readonly [
            ZodCustom<Set<unknown>, Set<unknown>>,
            PhraseLiteralSlot<"to intersect with">,
            ZodCustom<Set<unknown>, Set<unknown>>,
        ],
    > = ...

    Asserts that two Sets intersect (have common elements).

    expect(new Set([1, 2]), 'to intersect with', new Set([2, 3])); // passes
    expect(new Set([1, 2]), 'to intersect with', new Set([3, 4])); // fails

    set-to-have-intersection-with-set-satisfying-any

    collections