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