BUPKIS
    Preparing search index...

    Variable setIntersectionEqualityAssertionConst

    setIntersectionEqualityAssertion: AssertionFunctionSync<
        readonly [
            ZodCustom<Set<unknown>, Set<unknown>>,
            "to have intersection",
            ZodCustom<Set<unknown>, Set<unknown>>,
            "equal to",
            ZodCustom<Set<unknown>, Set<unknown>>,
        ],
        (setA: Set<unknown>, setB: Set<unknown>, expected: Set<unknown>) => boolean,
        readonly [
            ZodCustom<Set<unknown>, Set<unknown>>,
            PhraseLiteralSlot<"to have intersection">,
            ZodCustom<Set<unknown>, Set<unknown>>,
            PhraseLiteralSlot<"equal to">,
            ZodCustom<Set<unknown>, Set<unknown>>,
        ],
    > = ...

    Asserts that the intersection of two Sets equals a third Set.

    expect(
    new Set([1, 2, 3]),
    'to have intersection',
    new Set([2, 3, 4]),
    'equal to',
    new Set([2, 3]),
    ); // passes

    set-intersection-with-set-to-equal-set

    collections