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

Last updated: June 30,2024

1. Install "ghc-these.x86_64" package

Here is a brief guide to show you how to install ghc-these.x86_64 on Red Hat Enterprise Linux 9 (RHEL 9)

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

2. Uninstall "ghc-these.x86_64" package

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

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

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

Last metadata expiration check: 1:30:45 ago on Mon Feb 26 07:04:30 2024.
Available Packages
Name : ghc-these
Version : 1.1.1.1
Release : 4.el9
Architecture : x86_64
Size : 57 k
Source : ghc-these-1.1.1.1-4.el9.src.rpm
Repository : epel
Summary : An either-or-both data type
URL : https://hackage.haskell.org/package/these
License : BSD
Description : This package provides a data type 'These a b' which can hold a value of either
: type or values of each type. This is usually thought of as an "inclusive or"
: type (contrasting 'Either a b' as "exclusive or") or as an "outer join" type
: (contrasting '(a, b)' as "inner join").
:
: ' data These a b = This a | That b | These a b '
:
: Since version 1, this package was split into parts:
:
: * For 'Align' and
: 'Zip' type-classes.
:
: * For
: 'SemialignWithIndex' class, providing 'ialignWith' and 'izipWith'.
:
: * For lens
: combinators.
:
: * For
: transformers variant of 'These'.