BUPKIS
    Preparing search index...

    Variable iterableYieldsAtLeastAssertionConst

    iterableYieldsAtLeastAssertion: 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 least",
            ZodInt,
        ],
        (
            subject: Iterator<unknown, any, any> | Iterable<unknown, any, any>,
            minCount: 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 least">,
            ZodInt,
        ],
    > = ...

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

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

    iterable-to-yield-at-least-number

    iterable