AdjustedMantissa
struct AdjustedMantissaimport AdjustedMantissa from Wax;A parser-specific mantissa/exponent pair. Interpretation depends on the producing helper: extended values use a binary exponent, while rounded results use fields ready for IEEE packing. A negative power2 from ComputeFloat means that its fast path failed; do not pack that failure as a result.
Members
mantissafield
public uint64 mantissaThe significand or rounded mantissa for the current parser stage.
power2field
public int32 power2The binary exponent or encoded exponent for the current stage. Follow the producing helper's contract.
constructorconstructor
public constructor (uint64 mantissa, int32 power2)Stores a mantissa/exponent pair without validation.
ToStringmethod
public fn ToString() : stringProvided by the compiler.
ToStringBuffermethod
public fn ToStringBuffer(StringBuilder builder) : int32Provided by the compiler.