/** * A generator of lists whose size falls within the specified bounds. * * @tsplus static effect/core/testing/Gen.Ops listOfBounded * @tsplus static effect/core/testing/Gen.Aspects listOfBounded * @tsplus pipeable effect/core/testing/Gen listOfBounded */ export function listOfBounded(min: number, max: number) { return (self: Gen): Gen> => Gen.bounded( min, max, (n) => self.listOfN(n) ) }