How to Install and Uninstall ghc-hashtables.x86_64 Package on Oracle Linux 9

Last updated: May 19,2024

1. Install "ghc-hashtables.x86_64" package

This guide let you learn how to install ghc-hashtables.x86_64 on Oracle Linux 9

$ sudo dnf update $ sudo dnf install ghc-hashtables.x86_64

2. Uninstall "ghc-hashtables.x86_64" package

This is a short guide on how to uninstall ghc-hashtables.x86_64 on Oracle Linux 9:

$ sudo dnf remove ghc-hashtables.x86_64 $ sudo dnf autoremove

3. Information about the ghc-hashtables.x86_64 package on Oracle Linux 9

Last metadata expiration check: 1:54:46 ago on Thu Feb 15 07:50:05 2024.
Available Packages
Name : ghc-hashtables
Version : 1.2.4.2
Release : 1.el9
Architecture : x86_64
Size : 90 k
Source : ghc-hashtables-1.2.4.2-1.el9.src.rpm
Repository : epel
Summary : Mutable hash tables in the ST monad
URL : https://hackage.haskell.org/package/hashtables
License : BSD
Description : This package provides a couple of different implementations of mutable
: hash tables in the ST monad, as well as a typeclass abstracting their
: common operations, and a set of wrappers to use the hash tables in the
: IO monad.
:
: This package currently contains three hash table implementations:
:
: 1. Data.HashTable.ST.Basic contains a basic open-addressing hash table
: using linear probing as the collision strategy.
:
: 2. Data.HashTable.ST.Cuckoo contains an implementation of "cuckoo hashing"
: which has worst-case O(1) lookups and can reach a high "load factor".
:
: 3. Data.HashTable.ST.Linear contains a linear hash table, which trades
: some insert and lookup performance for higher space efficiency and
: much shorter delays when expanding the table.