1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use {Sequence, Value};

/// A source of randomness.
pub trait Source {
    /// Read `u64` uniformly distributed over `{0, 1, …, u64::MAX}`.
    fn read_u64(&mut self) -> u64;

    /// Read `f64` uniformly distributed over `[0, 1]`.
    #[inline(always)]
    fn read_f64(&mut self) -> f64 {
        self.read_u64() as f64 / ::core::u64::MAX as f64
    }

    /// Read a random value.
    #[inline(always)]
    fn read<V>(&mut self) -> V
    where
        Self: Sized,
        V: Value,
    {
        Value::read(self)
    }

    /// Read a sequence of random values.
    #[inline(always)]
    fn iter<'l, V>(&'l mut self) -> Sequence<'l, Self, V>
    where
        Self: Sized,
        V: Value,
    {
        From::from(self)
    }
}