BUPKIS
    Preparing search index...

    Variable setEqualityAssertionConst

    setEqualityAssertion: AssertionFunctionSync<
        readonly [
            ZodCustom<Set<unknown>, Set<unknown>>,
            "to equal",
            ZodCustom<Set<unknown>, Set<unknown>>,
        ],
        (actual: Set<unknown>, expected: Set<unknown>) => boolean,
        readonly [
            ZodCustom<Set<unknown>, Set<unknown>>,
            PhraseLiteralSlot<"to equal">,
            ZodCustom<Set<unknown>, Set<unknown>>,
        ],
    > = ...

    Asserts that two Sets are equal (same elements, order-independent).

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

    set-to-equal-set

    collections