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

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