How to Install and Uninstall ghc-strict Package on openSUSE Leap

Last updated: May 17,2024

1. Install "ghc-strict" package

Please follow the guidance below to install ghc-strict on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install ghc-strict

2. Uninstall "ghc-strict" package

Here is a brief guide to show you how to uninstall ghc-strict on openSUSE Leap:

$ sudo zypper remove ghc-strict

3. Information about the ghc-strict package on openSUSE Leap

Information for package ghc-strict:
-----------------------------------
Repository : Update repository with updates from SUSE Linux Enterprise 15
Name : ghc-strict
Version : 0.5-150500.3.3.1
Arch : x86_64
Vendor : SUSE LLC
Installed Size : 495.9 KiB
Installed : No
Status : not installed
Source package : ghc-strict-0.5-150500.3.3.1.src
Upstream URL : https://hackage.haskell.org/package/strict
Summary : Strict data types and String IO
Description :
This package provides strict versions of some standard Haskell data types
(pairs, Maybe and Either). It also contains strict IO operations.
It is common knowledge that lazy datastructures can lead to space-leaks.
This problem is particularly prominent, when using lazy datastructures to store
the state of a long-running application in memory. One common solution to this
problem is to use 'seq' and its variants in every piece of code that updates
your state. However a much easier solution is to use fully strict types to
store such state values. By "fully strict types" we mean types for whose values
it holds that, if they are in weak-head normal form, then they are also in
normal form. Intuitively, this means that values of fully strict types cannot
contain unevaluated thunks.
To define a fully strict datatype, one typically uses the following recipe.
1. Make all fields of every constructor strict; i.e., add a bang to all fields.
2. Use only strict types for the fields of the constructors.
The second requirement is problematic as it rules out the use of the standard
Haskell 'Maybe', 'Either', and pair types. This library solves this problem by
providing strict variants of these types and their corresponding standard
support functions and type-class instances.
Note that this library does currently not provide fully strict lists.
They can be added if they are really required. However, in many cases one
probably wants to use unboxed or strict boxed vectors from the 'vector' library
() instead of strict lists.
Moreover, instead of 'String's one probably wants to use strict 'Text' values
from the 'text' library ().
This library comes with batteries included; i.e., mirror functions and
instances of the lazy versions in 'base'. It also includes instances for
type-classes from the 'deepseq', 'binary', and 'hashable' packages.

5. The same packages on other Linux Distributions