BUPKIS
    Preparing search index...

    Variable iterableYieldsItemsSatisfyingAssertionConst

    iterableYieldsItemsSatisfyingAssertion: AssertionFunctionSync<
        readonly [
            ZodUnion<
                readonly [
                    ZodCustom<Iterable<unknown, any, any>, Iterable<unknown, any, any>>,
                    ZodCustom<Iterator<unknown, any, any>, Iterator<unknown, any, any>>,
                ],
            >,
            "to yield items satisfying",
            ZodUnknown,
        ],
        (
            subject: Iterator<unknown, any, any> | Iterable<unknown, any, any>,
            expected: unknown,
        ) => { 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 items satisfying">,
            ZodUnknown,
        ],
    > = ...

    Asserts that ALL yielded values individually satisfy the expected shape.

    Uses partial/satisfy semantics. Every item yielded must match.

    expect([{ a: 1 }, { a: 2, b: 3 }], 'to yield items satisfying', {
    a: z.number(),
    }); // passes
    expect([1, 2, 3], 'to yield items satisfying', z.number()); // passes

    iterable-to-yield-items-satisfying-any

    iterable