BUPKIS
    Preparing search index...

    Variable asyncIterableYieldsCountAssertionConst

    asyncIterableYieldsCountAssertion: AssertionFunctionAsync<
        readonly [
            ZodUnion<
                readonly [
                    ZodCustom<
                        AsyncIterable<unknown, any, any>,
                        AsyncIterable<unknown, any, any>,
                    >,
                    ZodCustom<
                        AsyncIterator<unknown, any, any>,
                        AsyncIterator<unknown, any, any>,
                    >,
                    ZodCustom<Iterable<unknown, any, any>, Iterable<unknown, any, any>>,
                ],
            >,
            "to yield count",
            ZodInt,
        ],
        (
            subject:
                | Iterable<unknown, any, any>
                | AsyncIterable<unknown, any, any>
                | AsyncIterator<unknown, any, any>,
            expectedCount: number,
        ) => Promise<
            { actual: number; expected: number; message: string }
            | undefined,
        >,
        readonly [
            ZodUnion<
                readonly [
                    ZodCustom<
                        AsyncIterable<unknown, any, any>,
                        AsyncIterable<unknown, any, any>,
                    >,
                    ZodCustom<
                        AsyncIterator<unknown, any, any>,
                        AsyncIterator<unknown, any, any>,
                    >,
                    ZodCustom<Iterable<unknown, any, any>, Iterable<unknown, any, any>>,
                ],
            >,
            PhraseLiteralSlot<"to yield count">,
            ZodInt,
        ],
    > = ...

    Asserts that an async iterable yields exactly the specified count of values.

    await expectAsync(asyncGen(), 'to yield count', 5);
    

    async-iterable-to-yield-count-number

    iterable