← Standard library

FloatHash

static class FloatHash
import FloatHash 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.

Floats.wax:12

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.

Floats.wax:16

Mix64To32method

public static fn Mix64To32(uint64 value) : uint32

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

Floats.wax:29