BUPKIS
    Preparing search index...

    Variable collectionValuesExhaustivelySatisfyAssertionConst Function

    collectionValuesExhaustivelySatisfyAssertion: AssertionFunctionSync<
        readonly [
            ZodUnion<
                readonly [
                    ZodCustom<Map<unknown, unknown>, Map<unknown, unknown>>,
                    ZodCustom<Set<unknown>, Set<unknown>>,
                    ZodArray<ZodUnknown>,
                ],
            >,
            "to have values exhaustively 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>,
                ],
            >,
            PhraseLiteralSlot<"to have values exhaustively satisfying">,
            ZodUnknown,
        ],
    > = ...

    Asserts that ALL values in a Map, Set, or Array individually match with deep equality.

    Uses strict deep-equality semantics — every value must exactly match. Empty collections pass vacuously.

    expect([{ a: 1 }, { a: 1 }], 'to have values exhaustively satisfying', {
    a: 1,
    }); // passes
    expect([{ a: 1, b: 2 }], 'to have values exhaustively satisfying', {
    a: 1,
    }); // fails — extra property b

    collection-to-have-values-exhaustively-satisfying-any

    collections