/** * A generator of maps whose size falls within the specified bounds. * * @tsplus static effect/core/testing/Gen.Ops mapOfBounded */ export function mapOfBounded( min: number, max: number, key: Gen, value: Gen ): Gen> { return Gen.bounded(min, max, (n) => Gen.mapOfN(n, key, value)) }