compareUnsigned
Compares two byte values numerically treating the values as unsigned.
Return
the value 0 if x == y; a value less than 0 if x < y as unsigned values; and a value greater than 0 if x > y as unsigned values
Since
9
Parameters
x
the first byte to compare
y
the second byte to compare
Compares two long values numerically treating the values as unsigned.
Return
the value 0 if x == y; a value less than 0 if x < y as unsigned values; and a value greater than 0 if x > y as unsigned values
Since
1.8
Parameters
x
the first long to compare
y
the second long to compare