1//! Internal structs and traits for the `WyRand` PRNGs. 2#[cfg(feature = "chacha")] 3pub(crate) mod buffer; 4 5#[cfg(feature = "wyrand")] 6pub(crate) mod state; 7 8pub(crate) mod uniform;