Compare 2 integers modulo mod. That is we compare integers a and b for which only the least significant log2(mod) bits are known.
@param mod must be a power of 2 @return a negative value if a is smaller than b a positive value if a is greater than b 0 if a equals b
See Implementation
Compare 2 integers modulo mod. That is we compare integers a and b for which only the least significant log2(mod) bits are known.
@param mod must be a power of 2 @return a negative value if a is smaller than b a positive value if a is greater than b 0 if a equals b