Function fmodf

Source
pub fn fmodf(x: f32, y: f32) -> f32
Expand description

Calculate the remainder of x / y, the precise result of x - trunc(x / y) * y.