BUPKIS
    Preparing search index...

    Variable setUnionEqualityAssertionConst

    setUnionEqualityAssertion: AssertionFunctionSync<
        readonly [
            ZodCustom<Set<unknown>, Set<unknown>>,
            "to have union",
            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 union">,
            ZodCustom<Set<unknown>, Set<unknown>>,
            PhraseLiteralSlot<"equal to">,
            ZodCustom<Set<unknown>, Set<unknown>>,
        ],
    > = ...

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

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

    set-union-with-set-to-equal-set

    collections