DecResult
struct DecResultimport DecResult from Wax;A low-level shortest-decimal result representing mantissa × 10^exponent, used by the
floating-point formatter.
Members
mantissafield
public uint64 mantissaThe unsigned decimal significand.
exponentfield
public int32 exponentThe decimal power applied to the significand.
constructorconstructor
public constructor (uint64 mantissa, int32 exponent)Creates a decimal significand/exponent pair.
ToStringmethod
public fn ToString() : stringProvided by the compiler.
ToStringBuffermethod
public fn ToStringBuffer(StringBuilder builder) : int32Provided by the compiler.