← Standard library

HashU128

struct HashU128
import HashU128 from Wax::Hash;

A low/high pair carrying a 128-bit unsigned product in the hashing implementation. This is an arithmetic support value, not a cryptographic hash type.

Hash.wax:10

Members

lofield

public uint64 lo

The least significant 64 bits.

Hash.wax:14

hifield

public uint64 hi

The most significant 64 bits.

Hash.wax:18

constructorconstructor

public constructor (uint64 lo, uint64 hi)

Stores the supplied low and high halves.

Hash.wax:22

ToStringmethod

public fn ToString() : string

Provided by the compiler.

ToStringBuffermethod

public fn ToStringBuffer(StringBuilder builder) : int32

Provided by the compiler.