aboutsummaryrefslogtreecommitdiff
path: root/src/executable/haskell/Utils/Either.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/executable/haskell/Utils/Either.hs')
-rw-r--r--src/executable/haskell/Utils/Either.hs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/executable/haskell/Utils/Either.hs b/src/executable/haskell/Utils/Either.hs
deleted file mode 100644
index 5d62dcc..0000000
--- a/src/executable/haskell/Utils/Either.hs
+++ /dev/null
@@ -1,7 +0,0 @@
-module Utils.Either
- ( mapLeft
- ) where
-
-mapLeft :: (a -> c) -> Either a b -> Either c b
-mapLeft f (Left l) = Left (f l)
-mapLeft _ (Right r) = (Right r)