How to Install and Uninstall ghc-text-short.x86_64 Package on Fedora 36

Last updated: October 06,2024

1. Install "ghc-text-short.x86_64" package

Here is a brief guide to show you how to install ghc-text-short.x86_64 on Fedora 36

$ sudo dnf update $ sudo dnf install ghc-text-short.x86_64

2. Uninstall "ghc-text-short.x86_64" package

Please follow the steps below to uninstall ghc-text-short.x86_64 on Fedora 36:

$ sudo dnf remove ghc-text-short.x86_64 $ sudo dnf autoremove

3. Information about the ghc-text-short.x86_64 package on Fedora 36

Last metadata expiration check: 5:01:06 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : ghc-text-short
Version : 0.1.3
Release : 9.fc36
Architecture : x86_64
Size : 49 k
Source : ghc-text-short-0.1.3-9.fc36.src.rpm
Repository : fedora
Summary : Memory-efficient representation of Unicode text strings
URL : https://hackage.haskell.org/package/text-short
License : BSD
Description : This package provides the 'ShortText' type which is suitable for keeping many
: short strings in memory. This is similiar to how 'ShortByteString' relates to
: 'ByteString'.
:
: The main difference between 'Text' and 'ShortText' is that 'ShortText' uses
: UTF-8 instead of UTF-16 internally and also doesn't support zero-copy slicing
: (thereby saving 2 words). Consequently, the memory footprint of a (boxed)
: 'ShortText' value is 4 words (2 words when unboxed) plus the length of the
: UTF-8 encoded payload.