Skip to main content

osom_lib_prng/streams/
mod.rs

1//! Holds implementations of various PRNG streams.
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!(chacha);