BUPKIS
    Preparing search index...

    Variable iterableYieldsAtMostAssertionConst

    iterableYieldsAtMostAssertion: AssertionFunctionSync<
        readonly [
            ZodUnion<
                readonly [
                    ZodCustom<Iterable<unknown, any, any>, Iterable<unknown, any, any>>,
                    ZodCustom<Iterator<unknown, any, any>, Iterator<unknown, any, any>>,
                ],
            >,
            "to yield at most",
            ZodInt,
        ],
        (
            subject: Iterator<unknown, any, any> | Iterable<unknown, any, any>,
            maxCount: number,
        ) => { actual: number; expected: string; 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 yield at most">,
            ZodInt,
        ],
    > = ...

    Asserts that an iterable yields at most the specified count of values.

    expect([1, 2], 'to yield at most', 3); // passes
    expect([1, 2, 3, 4], 'to yield at most', 3); // fails

    iterable-to-yield-at-most-number

    iterable