Neslib.MultiPrecision icon indicating copy to clipboard operation
Neslib.MultiPrecision copied to clipboard

High-Precision Floating-Point Types for Delphi

Results 2 Neslib.MultiPrecision issues
Sort by recently updated
recently updated
newest added

``` uses System.SysUtils, Neslib.MultiPrecision; var LQD: QuadDouble; LValue: string; begin LQD := QuadDouble(Extended.MaxValue); LValue := LQD.ToString; end; ``` LValue is not expected to be 'NAN', but it is.

The following code throws an exception: ``` uses System.SysUtils, Neslib.MultiPrecision; var LDD: DoubleDouble; LValue: string; begin LDD := DoubleDouble(Double.MaxValue); LDD := LDD+1; LValue := LDD.ToString(TMPFloatFormat.Fixed); end; ```