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

Last updated: October 10,2024

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

This tutorial shows how to install ghc-abstract-deque.x86_64 on Fedora 35

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

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

Here is a brief guide to show you how to uninstall ghc-abstract-deque.x86_64 on Fedora 35:

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

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

Last metadata expiration check: 1:42:21 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : ghc-abstract-deque
Version : 0.3
Release : 14.fc35
Architecture : x86_64
Size : 24 k
Source : ghc-abstract-deque-0.3-14.fc35.src.rpm
Repository : fedora
Summary : Abstract, parameterized interface to mutable Deques
URL : https://hackage.haskell.org/package/abstract-deque
License : BSD
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".