ParseErrorKind
enum ParseErrorKind extends int32import ParseErrorKind from Wax;Reasons numeric parsing can fail: empty input, missing digits, invalid characters, a negative unsigned input, an out-of-range value, or an unsupported radix.
Members
Emptycase
case EmptyThe input has no bytes.
NoDigitscase
case NoDigitsNo digits were found where a numeric value was required.
InvalidCharactercase
case InvalidCharacterA character does not belong to the accepted numeric syntax.
NegativeUnsignedcase
case NegativeUnsignedA negative sign was supplied for an unsigned target.
OutOfRangecase
case OutOfRangeThe parsed value does not fit the target type.
InvalidRadixcase
case InvalidRadixThe requested number base is unsupported.
CompareTomethod
public fn CompareTo(ParseErrorKind other) : int32Provided by the compiler.
Equalsmethod
public fn Equals(ParseErrorKind other) : boolProvided by the compiler.
GetHashCodemethod
public fn GetHashCode() : uint32Provided by the compiler.
ToStringmethod
public fn ToString() : stringProvided by the compiler.
ToStringBuffermethod
public fn ToStringBuffer(StringBuilder builder) : int32Provided by the compiler.