diff options
Diffstat (limited to 'src/client/Utils/Maybe.elm')
-rw-r--r-- | src/client/Utils/Maybe.elm | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/client/Utils/Maybe.elm b/src/client/Utils/Maybe.elm deleted file mode 100644 index d954ae0..0000000 --- a/src/client/Utils/Maybe.elm +++ /dev/null @@ -1,27 +0,0 @@ -module Utils.Maybe - ( isJust - , catMaybes - , maybeToList - ) where - -isJust : Maybe a -> Bool -isJust maybe = - case maybe of - Just _ -> True - Nothing -> False - -catMaybes : List (Maybe a) -> List a -catMaybes = - List.foldr - (\mb xs -> - case mb of - Just x -> x :: xs - Nothing -> xs - ) - [] - -maybeToList : Maybe a -> List a -maybeToList mb = - case mb of - Just a -> [a] - Nothing -> [] |