BUPKIS
    Preparing search index...

    Variable collectionValuesSatisfyAssertionConst Function

    collectionValuesSatisfyAssertion: AssertionFunctionSync<
        readonly [
            ZodUnion<
                readonly [
                    ZodCustom<Map<unknown, unknown>, Map<unknown, unknown>>,
                    ZodCustom<Set<unknown>, Set<unknown>>,
                    ZodArray<ZodUnknown>,
                ],
            >,
            readonly ["to have values satisfying", "to contain values satisfying"],
            ZodUnknown,
        ],
        (
            subject: unknown[] | Map<unknown, unknown> | Set<unknown>,
            expected: unknown,
        ) => { message: string } | undefined,
        readonly [
            ZodUnion<
                readonly [
                    ZodCustom<Map<unknown, unknown>, Map<unknown, unknown>>,
                    ZodCustom<Set<unknown>, Set<unknown>>,
                    ZodArray<ZodUnknown>,
                ],
            >,
            PhraseLiteralChoiceSlot<
                readonly ["to have values satisfying", "to contain values satisfying"],
            >,
            ZodUnknown,
        ],
    > = ...

    Asserts that ALL values in a Map, Set, or Array individually satisfy the expected shape.

    Uses partial/satisfy semantics — every value must match. Empty collections pass vacuously.

    For Map, values (not keys) are checked. Use mapKeysSatisfyAssertion to assert on Map keys instead.

    expect([{ a: 1 }, { a: 2, b: 3 }], 'to have values satisfying', {
    a: z.number(),
    }); // passes
    expect(new Set([1, 2, 3]), 'to have values satisfying', z.number()); // passes
    expect(new Map([['k', { x: 1 }]]), 'to have values satisfying', {
    x: z.number(),
    }); // passes

    collection-to-have-values-satisfying-any

    collections