BUPKIS
    Preparing search index...

    Variable iterableYieldsExhaustivelyAssertionConst

    iterableYieldsExhaustivelyAssertion: AssertionFunctionSync<
        readonly [
            ZodUnion<
                readonly [
                    ZodCustom<Iterable<unknown, any, any>, Iterable<unknown, any, any>>,
                    ZodCustom<Iterator<unknown, any, any>, Iterator<unknown, any, any>>,
                ],
            >,
            "to yield value 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 value exhaustively satisfying">,
            ZodUnknown,
        ],
    > = ...

    Asserts that an iterable yields a value exhaustively matching the expected value.

    Uses deep equality semantics (like 'to equal'). Extra properties on yielded values cause failure.

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

    iterable-to-yield-value-exhaustively-satisfying-any

    iterable