Numeric
constraint Numericimport Numeric from Wax;Common value, formatting, ordering, and nullable parsing operations required of numeric types.
Members
GetHashCodemethod
public fn GetHashCode() : uint32Returns a hash consistent with value equality.
ToStringmethod
public fn ToString() : stringReturns the value's text representation.
ToStringBuffermethod
public fn ToStringBuffer(StringBuilder builder) : int32Appends the text representation and returns the number of UTF-8 bytes appended.
Equalsmethod
public fn Equals(this other) : boolTests value equality.
CompareTomethod
public fn CompareTo(this other) : int32Returns negative, zero, or positive for less, equal, or greater.
Parsemethod
public static fn Parse(string text) : this?Parses using the implementing type's default syntax, returning null on failure.