pub trait OutputMixin<Itype, Xtype> {
    fn output(state: Itype) -> Xtype;
}
Expand description

The output mixin trait provides the permutation function for the output of the PCG. After the LCG state is advanced the state is run through the output(...) function to produce the output.

Required Methods

Implementors