How to Install and Uninstall ghc-abstract-deque.x86_64 Package on Fedora 39

Last updated: September 22,2024

1. Install "ghc-abstract-deque.x86_64" package

In this section, we are going to explain the necessary steps to install ghc-abstract-deque.x86_64 on Fedora 39

$ sudo dnf update $ sudo dnf install ghc-abstract-deque.x86_64

2. Uninstall "ghc-abstract-deque.x86_64" package

Please follow the steps below to uninstall ghc-abstract-deque.x86_64 on Fedora 39:

$ sudo dnf remove ghc-abstract-deque.x86_64 $ sudo dnf autoremove

3. Information about the ghc-abstract-deque.x86_64 package on Fedora 39

Last metadata expiration check: 4:46:22 ago on Thu Mar 7 11:44:58 2024.
Available Packages
Name : ghc-abstract-deque
Version : 0.3
Release : 28.fc39
Architecture : x86_64
Size : 23 k
Source : ghc-abstract-deque-0.3-28.fc39.src.rpm
Repository : fedora
Summary : Abstract, parameterized interface to mutable Deques
URL : https://hackage.haskell.org/package/abstract-deque
License : BSD-3-Clause
Description : An abstract interface to highly-parameterizable queues/deques.
:
: Background: There exists a feature space for queues that extends between:
:
: * simple, single-ended, non-concurrent, bounded queues
:
: * double-ended, threadsafe, growable queues
:
: ... with important points inbetween (such as the queues used for
: work-stealing).
:
: This package includes an interface for Deques that allows the programmer to use
: a single API for all of the above, while using the type-system to select an
: efficient implementation given the requirements (using type families).
:
: This package also includes a simple reference implementation based on 'IORef'
: and "Data.Sequence".