Skip to main content

inner_randomizer/
inner_randomizer.rs

1use buf_rand::BufRand;
2use rand::RngCore;
3
4fn main() {
5    let mut buf_rand = BufRand::new(rand::thread_rng());
6    // the inner randomizer (rand) of buf_rand can still be used
7    buf_rand.rand.next_u32();
8}