BUPKIS
    Preparing search index...

    Variable iterableYieldsSequenceSatisfyingAssertionConst

    iterableYieldsSequenceSatisfyingAssertion: 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 sequence satisfying", "to yield array satisfying"],
            ZodArray<ZodUnknown>,
        ],
        (
            subject: Iterator<unknown, any, any> | Iterable<unknown, any, any>,
            expected: unknown[],
        ) => {
            schema: ZodType<any, unknown, $ZodTypeInternals<any, unknown>>;
            subject: unknown[];
        },
        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 sequence satisfying", "to yield array satisfying"],
            >,
            ZodArray<ZodUnknown>,
        ],
    > = ...

    Asserts that an iterable yields values that satisfy the expected sequence.

    Uses satisfy/partial matching semantics on the collected array.

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

    iterable-to-yield-sequence-satisfying-array

    iterable