diff options
Diffstat (limited to 'client/src/Util/Either.hs')
-rw-r--r-- | client/src/Util/Either.hs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/client/src/Util/Either.hs b/client/src/Util/Either.hs deleted file mode 100644 index e76bc8a..0000000 --- a/client/src/Util/Either.hs +++ /dev/null @@ -1,7 +0,0 @@ -module Util.Either - ( eitherToMaybe - ) where - -eitherToMaybe :: forall a b. Either a b -> Maybe b -eitherToMaybe (Right b) = Just b -eitherToMaybe _ = Nothing |