1 2 3 4 5 6 7 8 9 10 11 12 13
//! Utility for random grouping. #![warn(missing_docs)] pub mod prelude; mod random_grouping; mod size_rounding; mod sized_iter; mod staff; pub use crate::random_grouping::*; pub use size_rounding::*;