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
Some callers can have binary representations that look like: byte[], int offset, int size.
The only current access pattern for bytes is HyperLogLogPlusPlus#add(byte[] bytes), which forces such callers to copy bytes. This copy can be avoided because HashFunction exposes HashFunction#hashBytes(byte[] input, int off, int len).
The text was updated successfully, but these errors were encountered:
Some callers can have binary representations that look like:
byte[], int offset, int size
.The only current access pattern for bytes is
HyperLogLogPlusPlus#add(byte[] bytes)
, which forces such callers to copy bytes. This copy can be avoided becauseHashFunction
exposesHashFunction#hashBytes(byte[] input, int off, int len)
.The text was updated successfully, but these errors were encountered: