UNPKG

pure-rand

Version:

Pure random number generator written in TypeScript

4 lines (3 loc) 246 B
import type { RandomGenerator } from '../types/RandomGenerator.js'; import type { ArrayInt } from './internals/ArrayInt.js'; export declare function unsafeUniformArrayIntDistribution(from: ArrayInt, to: ArrayInt, rng: RandomGenerator): ArrayInt;