sdp-0.2.1.1: Simple Data Processing
Copyright(c) Andrey Mulik 2019
LicenseBSD-style
Maintainerwork.a.mulik@gmail.com
Portabilityportable
Safe HaskellSafe
LanguageHaskell2010

SDP.Tuple

Description

SDP.Tuple provides tuple type synonyms.

Synopsis
  • type T2 i = (i, i)
  • type T3 i = (i, i, i)
  • type T4 i = (i, i, i, i)
  • type T5 i = (i, i, i, i, i)
  • type T6 i = (i, i, i, i, i, i)
  • type T7 i = (i, i, i, i, i, i, i)
  • type T8 i = (i, i, i, i, i, i, i, i)
  • type T9 i = (i, i, i, i, i, i, i, i, i)
  • type T10 i = (i, i, i, i, i, i, i, i, i, i)
  • type T11 i = (i, i, i, i, i, i, i, i, i, i, i)
  • type T12 i = (i, i, i, i, i, i, i, i, i, i, i, i)
  • type T13 i = (i, i, i, i, i, i, i, i, i, i, i, i, i)
  • type T14 i = (i, i, i, i, i, i, i, i, i, i, i, i, i, i)
  • type T15 i = (i, i, i, i, i, i, i, i, i, i, i, i, i, i, i)
  • fsts :: Functor f => f (a, b) -> f a
  • snds :: Functor f => f (a, b) -> f b
  • both :: (a -> b) -> (a, a) -> (b, b)

Tuple synonyms

type T2 i = (i, i) Source #

Tuple synonym

type T3 i = (i, i, i) Source #

Tuple synonym

type T4 i = (i, i, i, i) Source #

Tuple synonym

type T5 i = (i, i, i, i, i) Source #

Tuple synonym

type T6 i = (i, i, i, i, i, i) Source #

Tuple synonym

type T7 i = (i, i, i, i, i, i, i) Source #

Tuple synonym

type T8 i = (i, i, i, i, i, i, i, i) Source #

Tuple synonym

type T9 i = (i, i, i, i, i, i, i, i, i) Source #

Tuple synonym

type T10 i = (i, i, i, i, i, i, i, i, i, i) Source #

Tuple synonym

type T11 i = (i, i, i, i, i, i, i, i, i, i, i) Source #

Tuple synonym

type T12 i = (i, i, i, i, i, i, i, i, i, i, i, i) Source #

Tuple synonym

type T13 i = (i, i, i, i, i, i, i, i, i, i, i, i, i) Source #

Tuple synonym

type T14 i = (i, i, i, i, i, i, i, i, i, i, i, i, i, i) Source #

Tuple synonym

type T15 i = (i, i, i, i, i, i, i, i, i, i, i, i, i, i, i) Source #

Tuple synonym

Related combinators

fsts :: Functor f => f (a, b) -> f a Source #

Return all first elements in pairs.

snds :: Functor f => f (a, b) -> f b Source #

Return all first elements in pairs.

both :: (a -> b) -> (a, a) -> (b, b) Source #

Applies function to both elements of pair.