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