How to Install and Uninstall ghc-double-conversion.x86_64 Package on CentOS Stream 9

Last updated: September 29,2024

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

Please follow the guidance below to install ghc-double-conversion.x86_64 on CentOS Stream 9

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

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

This guide covers the steps necessary to uninstall ghc-double-conversion.x86_64 on CentOS Stream 9:

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

3. Information about the ghc-double-conversion.x86_64 package on CentOS Stream 9

Last metadata expiration check: 3:21:52 ago on Sat Mar 16 16:03:45 2024.
Available Packages
Name : ghc-double-conversion
Version : 2.0.2.0
Release : 3.el9
Architecture : x86_64
Size : 21 k
Source : ghc-double-conversion-2.0.2.0-3.el9.src.rpm
Repository : epel
Summary : Fast conversion between double precision floating point and text
URL : https://hackage.haskell.org/package/double-conversion
License : BSD
Description : A library that performs fast, accurate conversion between double precision
: floating point and text.
:
: This library is implemented as bindings to the C++ 'double-conversion' library
: written by Florian Loitsch at Google:
: .
:
: The 'Text' versions of these functions are about 30 times faster than the
: default 'show' implementation for the 'Double' type.
:
: The 'ByteString' versions are /slower/ than the 'Text' versions; roughly half
: the speed. (This seems to be due to the cost of allocating 'ByteString' values
: via 'malloc'.)
:
: As a final note, be aware that the 'bytestring-show' package is about 50%
: slower than simply using 'show'.