Trait xorshift::RngJump [] [src]

pub trait RngJump {
    fn jump(&mut self, count: usize);
}

A random number generator with jumpable state.

Required Methods

Forward the state of the random number generator.

When using the random number generator for parallel computations, jump the state to avoid biased generation.

Implementors