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