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

Last updated: October 09,2024

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

In this section, we are going to explain the necessary steps to install ghc-text-short.x86_64 on Fedora 35

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

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

This guide let you learn how to uninstall ghc-text-short.x86_64 on Fedora 35:

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

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

Last metadata expiration check: 5:57:32 ago on Wed Sep 7 08:25:01 2022.
Available Packages
Name : ghc-text-short
Version : 0.1.3
Release : 7.fc35
Architecture : x86_64
Size : 50 k
Source : ghc-text-short-0.1.3-7.fc35.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.