1 2 3 4 5 6 7 8 9
//! This module contains tools related to random sampling. //! //! To use this, the "rand" feature must be enabled. pub mod shape_sampling; pub mod standard; pub use shape_sampling::*; pub use standard::*;