Convert to given type without errors by bounding values to target type limits.
assert(compareIntegers( 1, 1) == 0); assert(compareIntegers(-1, 1) < 0); assert(compareIntegers( 1, -1) > 0); assert(compareIntegers(int.min, int.min) == 0);
See Implementation
Convert to given type without errors by bounding values to target type limits.