Usage:
x %% y
Returns:
The remainder of x divided by y
This is used to calculate fractional modulo calculations, unlike the % operator which only works on integers. It is equivalent to y * fract(x / y).
x %% y
The remainder of x divided by y
This is used to calculate fractional modulo calculations, unlike the % operator which only works on integers. It is equivalent to y * fract(x / y).