BUPKIS
    Preparing search index...

    Variable iterableYieldsFirstExhaustivelyAssertionConst

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

    Asserts that the first yielded value exhaustively matches.

    Uses deep equality semantics.

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

    iterable-to-yield-first-exhaustively-satisfying-any

    iterable