You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current Bytes.equals() implementation compares the two Bytes objects byte by byte, using getByte() method. This can be improved by using Arrays.equals(), since both underlying byte arrays are accessible, and start/end offsets are known.
The text was updated successfully, but these errors were encountered:
Current
Bytes.equals()
implementation compares the twoBytes
objects byte by byte, usinggetByte()
method. This can be improved by usingArrays.equals()
, since both underlying byte arrays are accessible, and start/end offsets are known.The text was updated successfully, but these errors were encountered: