README 652 B

1234567891011121314151617
  1. A library that performs fast, accurate conversion between double
  2. precision floating point and text.
  3. This library is implemented as bindings to the C++ double-conversion
  4. library written by Florian Loitsch at Google:
  5. https://github.com/floitsch/double-conversion.
  6. The Text versions of these functions are about 30 times faster than the
  7. default show implementation for the Double type.
  8. The ByteString versions are slower than the Text versions; roughly half
  9. the speed. (This seems to be due to the cost of allocating ByteString
  10. values via malloc.)
  11. As a final note, be aware that the bytestring-show package is about 50%
  12. slower than simply using show.