base-3.0.1.0: Basic librariesSource codeContentsIndex
Data.Tuple
Portabilityportable
Stabilityexperimental
Maintainerlibraries@haskell.org
Description
The tuple data types, and associated functions.
Synopsis
fst :: (a, b) -> a
snd :: (a, b) -> b
curry :: ((a, b) -> c) -> a -> b -> c
uncurry :: (a -> b -> c) -> ((a, b) -> c)
Documentation
fst :: (a, b) -> aSource
Extract the first component of a pair.
snd :: (a, b) -> bSource
Extract the second component of a pair.
curry :: ((a, b) -> c) -> a -> b -> cSource
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.
Produced by Haddock version 2.0.0.0