12 #ifndef ROC_CORE_FAST_RANDOM_H_
13 #define ROC_CORE_FAST_RANDOM_H_
uint32_t fast_random()
Get a random integer from a non cryptographically secure, but fast PRNG. Thread-safe.
uint32_t fast_random_range(uint32_t from, uint32_t to)
Get a random integer from a non cryptographically secure, but fast PRNG. Thread-safe.
double fast_random_gaussian()
Get a random double from a non cryptographically secure, but fast PRNG. Thread-safe.
Commonly used types and functions.