How to Install and Uninstall ghc-double-conversion.x86_64 Package on Red Hat Enterprise Linux 9 (RHEL 9)

Last updated: October 06,2024

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

In this section, we are going to explain the necessary steps to install ghc-double-conversion.x86_64 on Red Hat Enterprise Linux 9 (RHEL 9)

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

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

Learn how to uninstall ghc-double-conversion.x86_64 on Red Hat Enterprise Linux 9 (RHEL 9):

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

3. Information about the ghc-double-conversion.x86_64 package on Red Hat Enterprise Linux 9 (RHEL 9)

Last metadata expiration check: 1:44:55 ago on Mon Feb 26 07:04:30 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'.