BUPKIS
    Preparing search index...

    Variable iterableYieldsLastAssertionConst

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

    Asserts that the last yielded value satisfies the expected shape.

    Uses partial/satisfy semantics. Note: fully consumes the iterator.

    expect([{ a: 1 }, { b: 2, c: 3 }], 'to yield last', { b: 2 }); // passes
    expect([1, 2, 3], 'to yield last satisfying', 3); // passes

    iterable-to-yield-last-any

    iterable