turborand 0.10.1

Fast random number generators
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Convenience re-export of common traits, structs and utils.

pub use crate::traits::*;

#[cfg(any(feature = "wyrand", feature = "atomic"))]
#[cfg_attr(docsrs, doc(cfg(any(feature = "wyrand", feature = "atomic"))))]
pub use crate::rng::*;

#[cfg(feature = "chacha")]
#[cfg_attr(docsrs, doc(cfg(feature = "chacha")))]
pub use crate::chacha_rng::*;

#[cfg(feature = "rand")]
#[cfg_attr(docsrs, doc(cfg(feature = "rand")))]
pub use crate::compatibility::*;