⇐ Index
⇐ Arithmetic
<-a <-b mod ->result
Perform integer division and returns the value (modulo) of the difference.
trace(5 3 mod) #prints '2'
For floating-point values, in the case of x % y if x and y are positive finite values.
z is the result of x % y and is computed as x – n * y, where n is the largest possible integer that is less than or equal to x / y.