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

Last updated: September 30,2024

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

This guide let you learn how to install ghc-text-short.x86_64 on Fedora 38

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

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

This is a short guide on how to uninstall ghc-text-short.x86_64 on Fedora 38:

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

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

Last metadata expiration check: 0:02:31 ago on Sat Mar 16 22:59:57 2024.
Available Packages
Name : ghc-text-short
Version : 0.1.5
Release : 2.fc38
Architecture : x86_64
Size : 48 k
Source : ghc-text-short-0.1.5-2.fc38.src.rpm
Repository : fedora
Summary : Memory-efficient representation of Unicode text strings
URL : https://hackage.haskell.org/package/text-short
License : BSD-3-Clause
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.