aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Utils/Tuple.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/elm/Utils/Tuple.elm')
-rw-r--r--src/client/elm/Utils/Tuple.elm14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/client/elm/Utils/Tuple.elm b/src/client/elm/Utils/Tuple.elm
deleted file mode 100644
index f9391a0..0000000
--- a/src/client/elm/Utils/Tuple.elm
+++ /dev/null
@@ -1,14 +0,0 @@
-module Utils.Tuple exposing
- ( mapFst
- , mapSnd
- , mapBoth
- )
-
-mapFst : (a -> x) -> (a, b) -> (x, b)
-mapFst f (a, b) = (f a, b)
-
-mapSnd : (b -> x) -> (a, b) -> (a, x)
-mapSnd f (a, b) = (a, f b)
-
-mapBoth : (a -> x) -> (b -> y) -> (a, b) -> (x, y)
-mapBoth f g (a, b) = (f a, g b)