Returns a mutable view of the underlying bytes for the given HashCode if it is a byte-based hashcode. Otherwise it returns HashCode#asBytes. Do not mutate this array or else you will break the immutability contract of HashCode.
()
| 113 | */ |
| 114 | |
| 115 | byte[] getBytesInternal() { |
| 116 | return asBytes(); |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * Returns whether this {@code HashCode} and that {@code HashCode} have the same value, given that |
no test coverage detected