tinyrand-std 0.5.0

Extensions for using tinyrand with std.
Documentation
1
2
3
4
5
6
7
8
use tinyrand::Rand;
use crate::ClockSeed;

#[test]
fn clock_seed() {
    let mut seed = ClockSeed::default();
    assert_ne!(0, seed.next_u64());
}