pub fn modulo_float(left: f64, right: f64) -> f64
Expand description

This function takes two f64 numbers as arguments, left and right, and returns the result of the modulo operation (left modulo right) as an f64. The calculation is performed using the native modulo operator.