BUPKIS
    Preparing search index...

    Variable iterableYieldsLastExhaustivelyAssertionConst

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

    Asserts that the last yielded value exhaustively matches.

    Uses deep equality semantics. Note: fully consumes the iterator.

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

    iterable-to-yield-last-exhaustively-satisfying-any

    iterable