/** * @tsplus static effect/core/stm/TRandom.Ops nextRange */ export function nextRange(low: number, high: number): STM { return STM.serviceWithSTM(TRandom.Tag)((_) => _.nextRange(low, high)) }