/** * Sets the size parameter for this generator to the specified value. * * @tsplus static effect/core/testing/Gen.Aspects resize * @tsplus pipeable effect/core/testing/Gen resize */ export function resize(size: number) { return (self: Gen): Gen => Sized.withSizeGen(size)(self) }