← Standard library

IntegerHash

static class IntegerHash
import IntegerHash from Wax;

Non-cryptographic integer-bit mixing used by built-in value hashes. Outputs are suitable for hash-table distribution, not authentication or secret generation.

Integers.wax:11

Inherits from object. Follow these links for inherited members.

Members

Mix32method

public static fn Mix32(uint32 value) : uint32

Mixes a 32-bit bit pattern into a 32-bit hash.

Integers.wax:15

Mix64To32method

public static fn Mix64To32(uint64 value) : uint32

Mixes all 64 input bits and folds the result to a 32-bit hash.

Integers.wax:28