← Standard library

U128Fixed

struct U128Fixed
import U128Fixed 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.

StringFormatterFixed.wax:38

Members

lofield

public uint64 lo

The low 64 bits.

StringFormatterFixed.wax:42

hifield

public uint64 hi

The high 64 bits.

StringFormatterFixed.wax:46

constructorconstructor

public constructor (uint64 lo, uint64 hi)

Stores the supplied low and high halves.

StringFormatterFixed.wax:50

ToStringmethod

public fn ToString() : string

Provided by the compiler.

ToStringBuffermethod

public fn ToStringBuffer(StringBuilder builder) : int32

Provided by the compiler.