xxh64code function
Gets the 64-bit xxHash value of a String.
Parameters:
input
is the string to hash.- The
encoding
is the encoding to use. Default isinput.codeUnits
.
Implementation
int xxh64code(String input, [Encoding? encoding]) {
return xxh64.string(input, encoding).number();
}