public native static operator%( readonly a as Float, readonly b as Float ) as Float
Computes the remainder of one Float value divided by another.
a%b.
a%b
assert Float(10.0) % Float(3.0) == Float(1.0)