/** * @tsplus static effect/core/io/Random.Ops nextRange */ export function nextRange(low: number, high: number): Effect { return Effect.randomWith((random) => random.nextRange(low, high)) }