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