Find the remainder of x/y with +ve sign (euclidean division).
dividend
divisor
n>0: floor(x % y), n<0: ceil(x % y)
Generated using TypeDoc
Find the remainder of x/y with +ve sign (euclidean division).