BUPKIS
    Preparing search index...

    Variable emptySetAssertionConst

    emptySetAssertion: AssertionStandardSchemaSync<
        readonly [ZodCustom<Set<unknown>, Set<unknown>>, "to be empty"],
        ZodCustom<Set<unknown>, Set<unknown>>,
        readonly [
            ZodCustom<Set<unknown>, Set<unknown>>,
            PhraseLiteralSlot<"to be empty">,
        ],
    > = ...

    Asserts that a Set is empty.

    expect(new Set(), 'to be empty'); // passes
    expect(new Set(['value']), 'to be empty'); // fails

    set-to-be-empty

    collections