osom_lib_prng 0.1.21

Pseudorandom number generators for osom_lib.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Holds implementations of various PRNG streams.

macro_rules! reexport {
    ( $id: ident ) => {
        mod $id;
        #[allow(unused_imports)]
        pub use $id::*;
    };
    ( $id: ident, $($ids:ident),* $(,)?) => {
        reexport!($id);
        reexport!($($ids),*);
    };
}

reexport!(chacha);