(@NotNull Binary other)
| 121 | } |
| 122 | |
| 123 | @Override |
| 124 | public int compareTo(@NotNull Binary other) { |
| 125 | return Arrays.compareUnsigned(bytes, offset, offset + count, |
| 126 | other.bytes, other.offset, other.offset + other.count); |
| 127 | } |
| 128 | |
| 129 | public boolean equals(@Nullable Binary other) { |
| 130 | return this == other || other != null && count == other.count && |