Expand description
§stdrandom
Random numbers generator using only standard library.
Functions§
- fast_
f32 - Fast but lower-entropy
f32
in[0, 1)
- fast_
f64 - Fast but lower-entropy
f64
in[0, 1)
- fast_
u32 - Generates u32 random number using current thread RandomState
- fast_
u64 - Generates u64 random number using current thread RandomState
- fill_
bytes - Fills slice with random bytes using the provided generator function.
- fill_
numbers - Fills a slice with generated numbers using the provided generator function.
- gen_
range - Generates random number in specified range using supplied generator.
- random_
f32 - Higher entropy
f32
in[0, 1)
- random_
f64 - Higher entropy
f64
in[0, 1)
- random_
u32 - Generates higher entropy random u32 number in separate thread.
- random_
u64 - Generates higher entropy random u64 number in separate thread.