UNPKG
pure-rand
Version:
experimental (5.0.0-experimental.4.2.1.0)
latest (8.4.0)
next (3.0.0-alpha.2.0.0.2)
8.4.0
8.3.0
8.2.0
8.1.0
8.0.0
7.0.1
7.0.0
6.1.0
6.0.4
6.0.3
6.0.2
6.0.1
6.0.0
5.0.5
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
5.0.0-experimental.4.2.1.0
5.0.0-experimental.4.1.2.1
5.0.0-experimental.4.1.2.0
4.2.1
4.2.0
4.1.2
4.1.1
4.1.0
4.0.0
3.1.0
3.0.0
3.0.0-alpha.2.0.0.2
3.0.0-alpha.2.0.0.1
3.0.0-alpha.2.0.0.0
2.0.0
1.7.0
1.6.2
1.6.0
1.5.0
1.4.2
1.4.1
1.4.0
1.3.2
1.3.1
1.3.0
1.2.0
1.1.1
1.1.0
1.0.2
1.0.1
0.0.0
Pure random number generator written in TypeScript
github.com/dubzzz/pure-rand
dubzzz/pure-rand
pure-rand
/
lib
/
esm
/
types
/
distribution
/
UnsafeUniformArrayIntDistribution.d.ts
4 lines
(3 loc)
•
246 B
TypeScript
View Raw
1
2
3
4
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
;