← Standard library

FpU128

struct FpU128
import FpU128 from Wax;

A low/high pair carrying an unsigned 128-bit product in the floating-point parser.

FloatParse.wax:12

Members

lofield

public uint64 lo

The least significant 64 bits.

FloatParse.wax:16

hifield

public uint64 hi

The most significant 64 bits.

FloatParse.wax:20

constructorconstructor

public constructor (uint64 lo, uint64 hi)

Stores the supplied low and high halves.

FloatParse.wax:24

ToStringmethod

public fn ToString() : string

Provided by the compiler.

ToStringBuffermethod

public fn ToStringBuffer(StringBuilder builder) : int32

Provided by the compiler.