ghc-lib-parser-9.10.1.20240511: The GHC API, decoupled from GHC versions
Safe HaskellIgnore
LanguageGHC2021

GHC.Utils.Containers.Internal.StrictPair

Description

A strict pair

Synopsis

Documentation

data StrictPair a b Source #

The same as a regular Haskell pair, but

(x :*: _|_) = (_|_ :*: y) = _|_

Constructors

!a :*: !b infixr 1 

toPair :: StrictPair a b -> (a, b) Source #

Convert a strict pair to a standard pair.