U128Fixed
struct U128Fixedimport 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.
Members
lofield
public uint64 loThe low 64 bits.
hifield
public uint64 hiThe high 64 bits.
constructorconstructor
public constructor (uint64 lo, uint64 hi)Stores the supplied low and high halves.
ToStringmethod
public fn ToString() : stringProvided by the compiler.
ToStringBuffermethod
public fn ToStringBuffer(StringBuilder builder) : int32Provided by the compiler.