base-4.7.0.0: Basic libraries

Copyright(c) The University of Glasgow 2001
LicenseBSD-style (see the file libraries/base/LICENSE)
Maintainerlibraries@haskell.org
Stabilityexperimental
Portabilityportable
Safe HaskellTrustworthy
LanguageHaskell2010

Data.Tuple

Description

The tuple data types, and associated functions.

Synopsis

Documentation

fst ∷ (a, b) → a Source

Extract the first component of a pair.

snd ∷ (a, b) → b Source

Extract the second component of a pair.

curry ∷ ((a, b) → c) → a → b → c Source

curry converts an uncurried function to a curried function.

uncurry ∷ (a → b → c) → (a, b) → c Source

uncurry converts a curried function to a function on pairs.

swap ∷ (a, b) → (b, a) Source

Swap the components of a pair.