summaryrefslogtreecommitdiff
path: root/Utility/Tuple.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Utility/Tuple.hs')
-rw-r--r--Utility/Tuple.hs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Utility/Tuple.hs b/Utility/Tuple.hs
new file mode 100644
index 000000000..78dd5d0c9
--- /dev/null
+++ b/Utility/Tuple.hs
@@ -0,0 +1,15 @@
+{- tuple utility functions
+ -
+ - Copyright 2017 Joey Hess <id@joeyh.name>
+ -
+ - License: BSD-2-clause
+ -}
+
+fst3 :: (a,b,c) -> a
+fst3 (a,b,c) = a
+
+snd3 :: (a,b,c) -> b
+snd3 (a,b,c) = b
+
+thd3 :: (a,b,c) -> c
+thd3 (a,b,c) = c