Returns an abstract string representation of a number. The abstract representation is described in the specification. (p. 9-12)
Converts a decimal number to a string using "engineering" notation, per the spec.
Converts a string into a decimal number. This departs from the specification in that the coefficient string may contain underscores. A leading or trailing "." is allowed by the specification even though not valid as a D language real.
Returns a full, exact representation of a number. Similar to abstractForm, but it provides a valid string that can be converted back into a number.
Converts a decimal number to a string using "scientific" notation, per the spec.
to!string(BigInt).
binary integer decimal form
Returns a string representing the value of the number, formatted as specified by the format string.
Copyright 2009-2016 by Paul D. Anderson.
Conforms to the General Decimal Arithmetic Specification, Version 1.70, (25 March 2009).
<a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>
Conversion of floating-point decimals to/from strings.
An implementation of the General Decimal Arithmetic Specification.