/** * A sized generator, whose size falls within the specified bounds. * * @tsplus static effect/core/testing/Gen.Ops sized */ export function sized(f: (n: number) => Gen): Gen { return Gen.size.flatMap(f) }