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