Function Subspace :: sus :: num :: operator%

auto operator%(f32 l, f32 r) -> f32

Satisfies the Rem concept for floating point values.

The remainder from the division of two floats.

The remainder has the same sign as the dividend and is computed as: l - (l / r).trunc() * r.