Trait pcg_rand::multiplier::Multiplier [] [src]

pub trait Multiplier<Itype> {
    fn multiplier() -> Itype;
}

This trait provides the multiplier for the internal LCG of the PCG generator Implementing this trait for a struct will allow providing your own multiplier for the PCG.

Required Methods

Implementors