pub fn fmod(x: f64, y: f64) -> f64
Calculate the remainder of x / y, the precise result of x - trunc(x / y) * y.
x / y
x - trunc(x / y) * y