DFP icon indicating copy to clipboard operation
DFP copied to clipboard

Java/.NET implementation of Intel IEEE-754 compliant decimal-float library

Results 3 DFP issues
Sort by recently updated
recently updated
newest added

Some functions like round(value, precision, roundingType), roundToReciprocal, isRounded, isRoundedToReciprocal, etc. are implemented only in Java and .NET and missed in C/C++

In Java (double)3.15f == 3.1500000953674316, so the only way to convert value correctly - use string conversion. But the string conversion could be slow and also allocate memory.

Used official docker image mcr.microsoft.com/dotnet/aspnet:6.0.3-alpine3.15 with glibc 2.30-r0 Any attempt to use Decimal64 fails with: ```bash # dotnet TestDfp.dll Unhandled exception. System.DllNotFoundException: Unable to load shared library 'ddfp0x11x25' or one...

bug