How to Install and Uninstall ghc-double-conversion.x86_64 Package on Fedora 39

Last updated: September 21,2024

1. Install "ghc-double-conversion.x86_64" package

Please follow the steps below to install ghc-double-conversion.x86_64 on Fedora 39

$ sudo dnf update $ sudo dnf install ghc-double-conversion.x86_64

2. Uninstall "ghc-double-conversion.x86_64" package

Please follow the guidelines below to uninstall ghc-double-conversion.x86_64 on Fedora 39:

$ sudo dnf remove ghc-double-conversion.x86_64 $ sudo dnf autoremove

3. Information about the ghc-double-conversion.x86_64 package on Fedora 39

Last metadata expiration check: 5:05:36 ago on Thu Mar 7 17:44:52 2024.
Available Packages
Name : ghc-double-conversion
Version : 2.0.4.2
Release : 6.fc39
Architecture : x86_64
Size : 36 k
Source : ghc-double-conversion-2.0.4.2-6.fc39.src.rpm
Repository : fedora
Summary : Fast conversion between single and double precision floating point and text
URL : https://hackage.haskell.org/package/double-conversion
License : BSD-2-Clause
Description : A library that performs fast, accurate conversion between floating point and
: text.
:
: This library is implemented as bindings to the C++ 'double-conversion' library
: written by Florian Loitsch at Google:
: .
:
: Now it can convert single precision numbers, and also it can create Builder,
: instead of bytestring or text.
:
: The 'Text' versions of these functions are about 30 times faster than the
: default 'show' implementation for the 'Double' type.
:
: The 'ByteString' versions are have very close speed to the 'Text' versions;
:
: Builder versions (both for Text and Bytestring) are slower on single value, but
: they are much faster on large number of values (up to 20x faster on list with
: 20000 doubles).
:
: As a final note, be aware that the 'bytestring-show' package is about 50%
: slower than simply using 'show'.