prrng
a collection of psuedo-random number generators.
this crate provides a few prng algorithms, easily composable with each other via the [Random] trait.
use XorShift32;
prrng is for fun, and mainly intended to have minimal and extremely simple implementations of various rng algorithms, including popular ones like some xorshift variants or ChaCha, and including esoteric ones like a recreation of the infamous RANDU function, or even the rng used in BBC Elite. all while being completely no_std, mostly const fn, and dependency-free.
everything here is best effort.
rust version support
what is that?