BUPKIS
    Preparing search index...

    Variable iterableYieldsItemsExhaustivelyAssertionConst

    iterableYieldsItemsExhaustivelyAssertion: 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 exhaustively 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 exhaustively satisfying">,
            ZodUnknown,
        ],
    > = ...

    Asserts that ALL yielded values individually match with deep equality.

    Uses strict equality semantics. Every item yielded must exactly match.

    expect([{ a: 1 }, { a: 1 }], 'to yield items exhaustively satisfying', {
    a: 1,
    }); // passes
    expect([{ a: 1, b: 2 }], 'to yield items exhaustively satisfying', {
    a: 1,
    }); // fails

    iterable-to-yield-items-exhaustively-satisfying-any

    iterable