buf-rand 0.1.3

this crate contains a buffered randomizer for creating random booleans efficiently
Documentation
1
2
3
4
5
6
7
8
use buf_rand::BufRand;
use rand::RngCore;

fn main() {
    let mut buf_rand = BufRand::new(rand::thread_rng());
    // the inner randomizer (rand) of buf_rand can still be used
    buf_rand.rand.next_u32();
}