double-conversion icon indicating copy to clipboard operation
double-conversion copied to clipboard

A fast Haskell library for converting between double precision floating point numbers and text strings. It is implemented as a binding to the V8-derived C++ double-conversion library.

Results 14 double-conversion issues
Sort by recently updated
recently updated
newest added

Bumps [actions/cache](https://github.com/actions/cache) from 3.3.2 to 4.0.2. Release notes Sourced from actions/cache's releases. v4.0.2 What's Changed Fix fail-on-cache-miss not working by @​cdce8p in actions/cache#1327 Full Changelog: https://github.com/actions/cache/compare/v4.0.1...v4.0.2 v4.0.1 What's Changed Update...

dependencies

If I compile with `-O0`, I get the following test failure: ``` *** Failed! Falsifiable (after 1 test): 0.0 0.0 (used seed -8074436915145524066) t_shortest: [Failed] *** Failed! Falsifiable (after 1...

Details below. It seems that this is caused by lacking bounds on `base` and `bytestring`. ### GHC 7.6 https://github.com/hackage-trustees/text-format/actions/runs/3703919604/jobs/6275933011#step:17:110 ``` Data/Double/Conversion/Convertable.hs:22:18: Could not find module `Data.ByteString.Builder' It is a member...

Please add and maintain a CHANGELOG. This can also contain a statement like `Tested with GHC x.y to x'.y'` to express your intent which GHC versions that release is for.

Please add tags for the latest releases: - [2.0.2.0](https://hackage.haskell.org/package/double-conversion-2.0.2.0), - [2.0.3.0](https://hackage.haskell.org/package/double-conversion-2.0.3.0), - [2.0.4.0](https://hackage.haskell.org/package/double-conversion-2.0.4.0), - [2.0.4.1](https://hackage.haskell.org/package/double-conversion-2.0.4.1), - 2.0.4.2 Tags are important to get a complete picture what changed between versions.

implement javascript versions under the assumption that engines where we run the code will have V8 compatible implementation. NodeJS looks fine.

IIUC, this only exposes functions from doubles to strings, not the other way around, but https://github.com/google/double-conversion/blob/master/double-conversion/string-to-double.h has functions from string-to-double – would it make sense to include both directions? The...

When I run `apt-get install libstdc++6`, I am informed that `libstdc++6 is already the newest version (7.2.0-1ubuntu1~16.04)`. But when I try to install double-conversion (using Stack), I get this error:...

`double-conversion` Haskell package copies the `double-conversion` C library into its source tree. This works well enough for most use cases, but problems begin when you want to link your program...