DoubleResult
struct DoubleResultimport DoubleResult from Wax;A low-level floating-point parse result. Check outcome before reading bits; on success, position is the consumed UTF-8 byte count, which may be less than the input length.
Members
bitsfield
public uint64 bitsThe IEEE result bits when outcome is kOutcomeOk.
outcomefield
public int32 outcomeZero for success, one for invalid input, or two for out-of-range conversion; use FloatParse outcome constants.
positionfield
public int32 positionThe consumed byte position on success, or the reported failure position. Relative to the input span start.
constructorconstructor
public constructor ()Creates a zero-initialized result record; this alone does not perform parsing.
ToStringmethod
public fn ToString() : stringProvided by the compiler.
ToStringBuffermethod
public fn ToStringBuffer(StringBuilder builder) : int32Provided by the compiler.