xxh3code function

int xxh3code(
  1. String input, [
  2. Encoding? encoding
])

Gets the 64-bit XXH3 value of a String.

Parameters:

  • input is the string to hash
  • The encoding is the encoding to use. Default is input.codeUnits

Implementation

int xxh3code(String input, [Encoding? encoding]) {
  return xxh3.string(input, encoding).number();
}