Closed ndragon798 closed 1 year ago
Add an option to specify a lower bound for the random int generation. Examples from numpy and the random lib in python below.
numpy.random.randint(950, 1000) random.randint(100,1000)
numpy.random.randint(950, 1000)
random.randint(100,1000)
This would make fastrand a better replacement for quickly generating random ints.
Pull request invited !
Should be fixed in release 1.8.0
Add an option to specify a lower bound for the random int generation. Examples from numpy and the random lib in python below.
numpy.random.randint(950, 1000)
random.randint(100,1000)
This would make fastrand a better replacement for quickly generating random ints.