← Standard library

U128

struct U128
import U128 from Wax;

A pair of 64-bit halves used by low-level numeric formatting arithmetic. This is a helper representation, not a general 128-bit arithmetic API; ordinary callers should use numeric formatting methods.

StringFormatter.wax:33

Members

lofield

public uint64 lo

The low 64 bits.

StringFormatter.wax:37

hifield

public uint64 hi

The high 64 bits.

StringFormatter.wax:41

constructorconstructor

public constructor (uint64 lo, uint64 hi)

Stores the supplied low and high halves.

StringFormatter.wax:45

ToStringmethod

public fn ToString() : string

Provided by the compiler.

ToStringBuffermethod

public fn ToStringBuffer(StringBuilder builder) : int32

Provided by the compiler.