BUPKIS
    Preparing search index...

    Variable iterableYieldsFirstAssertionConst

    iterableYieldsFirstAssertion: 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 first", "to yield first 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 first", "to yield first satisfying"],
            >,
            ZodUnknown,
        ],
    > = ...

    Asserts that the first yielded value satisfies the expected shape.

    Uses partial/satisfy semantics.

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

    iterable-to-yield-first-any

    iterable