Operators

There is no mathematical rigorous modulo operator in Rust. The % operator just returns the remainder of a function.

To get a wrapping modulus function use the rem_euclid function. Have not seen this working as yet.