BUPKIS
    Preparing search index...

    Variable collectionSizeBetweenAssertionConst

    collectionSizeBetweenAssertion: AssertionFunctionSync<
        readonly [
            ZodUnion<
                readonly [
                    ZodCustom<Map<unknown, unknown>, Map<unknown, unknown>>,
                    ZodCustom<Set<unknown>, Set<unknown>>,
                ],
            >,
            "to have size between",
            ZodTuple<[ZodInt, ZodInt], null>,
        ],
        (
            collection: Map<unknown, unknown> | Set<unknown>,
            __namedParameters: [number, number],
        ) => { message: string } | undefined,
        readonly [
            ZodUnion<
                readonly [
                    ZodCustom<Map<unknown, unknown>, Map<unknown, unknown>>,
                    ZodCustom<Set<unknown>, Set<unknown>>,
                ],
            >,
            PhraseLiteralSlot<"to have size between">,
            ZodTuple<[ZodInt, ZodInt], null>,
        ],
    > = ...

    Asserts that a collection (Map or Set) has a size within a specific range.

    expect(new Set([1, 2]), 'to have size between', [1, 3]); // passes
    expect(new Set([1, 2, 3, 4]), 'to have size between', [1, 3]); // fails

    collection-to-have-size-between-nonnegative-integer-and-nonnegative-integer

    collections