Struct pcg_rand::stream::SpecificSeqStream [] [src]

pub struct SpecificSeqStream<Itype> { /* fields omitted */ }

By default this stream provides the same stream as OneSeqStream. The advantage to this stream is it can be changed at runtime. This incurs an extra Itype of storage overhead.

Trait Implementations

impl Stream<u32> for SpecificSeqStream<u32>
[src]

impl Stream<u64> for SpecificSeqStream<u64>
[src]

impl Stream<u128> for SpecificSeqStream<u128>
[src]

impl<Itype: Rand + PcgOps> Rand for SpecificSeqStream<Itype>
[src]

Generates a random instance of this type using the specified source of randomness. Read more