summaryrefslogtreecommitdiff
path: root/Utility/Tuple.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Utility/Tuple.hs')
-rw-r--r--Utility/Tuple.hs6
1 files changed, 5 insertions, 1 deletions
diff --git a/Utility/Tuple.hs b/Utility/Tuple.hs
index 25c6e8f..9638bcc 100644
--- a/Utility/Tuple.hs
+++ b/Utility/Tuple.hs
@@ -5,7 +5,11 @@
- License: BSD-2-clause
-}
-module Utility.Tuple where
+module Utility.Tuple (
+ fst3,
+ snd3,
+ thd3,
+) where
fst3 :: (a,b,c) -> a
fst3 (a,_,_) = a