// alazar::xorshift
//
//! Pseudo-random number generators based on [Xorshift].
//!
//! This module defines several types:
//! - classic *XorShift* algorithms:
//! ([`XorShift32`], [`XorShift64`], [`XorShift128`], [`XorShift128p`]).
//! - variations with a smaller state:
//! ([`XorShift16`], [`XorShift8`]).
//! - other implementations loosely based on *XorShift*:
//! ([`Xyza8a`], [`Xyza8b`]).
//!
//! [Xorshift]: https://en.wikipedia.org/wiki/Xorshift
//
pub use u128::;
pub use u16XorShift16;
pub use u32XorShift32;
pub use u64XorShift64;
pub use u8::;
pub use ;