BUPKIS
    Preparing search index...

    Variable iterableEmptyAssertionConst

    iterableEmptyAssertion: AssertionFunctionSync<
        readonly [
            ZodUnion<
                readonly [
                    ZodCustom<Iterable<unknown, any, any>, Iterable<unknown, any, any>>,
                    ZodCustom<Iterator<unknown, any, any>, Iterator<unknown, any, any>>,
                ],
            >,
            "to be an empty iterable",
        ],
        (
            subject: Iterator<unknown, any, any> | Iterable<unknown, any, any>,
        ) => { message: string } | undefined,
        readonly [
            ZodUnion<
                readonly [
                    ZodCustom<Iterable<unknown, any, any>, Iterable<unknown, any, any>>,
                    ZodCustom<Iterator<unknown, any, any>, Iterator<unknown, any, any>>,
                ],
            >,
            PhraseLiteralSlot<"to be an empty iterable">,
        ],
    > = ...

    Asserts that an iterable yields nothing (is empty).

    Use 'not to be an empty iterable' or 'to yield at least', 1 for non-empty assertions.

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

    iterable-to-be-an-empty-iterable

    iterable