Struct pcg_rand::stream::NoSeqStream[][src]

pub struct NoSeqStream;

This stream provides an increment of 0 to the LCG. This turns the LCG into a MCG, which while being less statistically sound than an LCG, it is faster.

Trait Implementations

impl Stream<u32> for NoSeqStream
[src]

impl Stream<u64> for NoSeqStream
[src]

impl Stream<u128> for NoSeqStream
[src]

impl Rand for NoSeqStream
[src]

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

Auto Trait Implementations

impl Send for NoSeqStream

impl Sync for NoSeqStream