File: Tuple.hs

package info (click to toggle)
bali-phy 4.0~beta16%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 15,192 kB
  • sloc: cpp: 119,288; xml: 13,482; haskell: 9,722; python: 2,930; yacc: 1,329; perl: 1,169; lex: 904; sh: 343; makefile: 26
file content (16 lines) | stat: -rw-r--r-- 217 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{-# LANGUAGE NoImplicitPrelude #-}
module Data.Tuple where

fst (x,y) = x
fst3 (x,y,z) = x

snd (x,y) = y
snd3 (x,y,z) = y

thd3 (x,y,z) = z

swap (x,y) = (y,x)

curry f x y = f (x,y)
uncurry f p = f (fst p) (snd p)