osom_lib_prng/streams/
mod.rs1macro_rules! reexport {
4 ( $id: ident ) => {
5 mod $id;
6 #[allow(unused_imports)]
7 pub use $id::*;
8 };
9 ( $id: ident, $($ids:ident),* $(,)?) => {
10 reexport!($id);
11 reexport!($($ids),*);
12 };
13}
14
15reexport!(chacha);