osom_lib_prng/prngs/
mod.rs

1pub(crate) mod helpers;
2
3macro_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!(lcg, splitmix, chacha);