BUPKIS
    Preparing search index...

    Variable iterableYieldsCountAssertionConst

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

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

    expect([1, 2, 3], 'to yield count', 3); // passes
    expect(new Set([1, 2]), 'to yield count', 2); // passes

    iterable-to-yield-count-number

    iterable