2014-03-30 03:10:52 +00:00
|
|
|
{- utilities for simple data types
|
|
|
|
-
|
2015-01-06 23:07:40 +00:00
|
|
|
- Copyright 2013 Joey Hess <joey@kitenet.net>
|
2014-03-30 03:10:52 +00:00
|
|
|
-
|
2014-05-10 14:05:28 +00:00
|
|
|
- License: BSD-2-clause
|
2014-03-30 03:10:52 +00:00
|
|
|
-}
|
|
|
|
|
|
|
|
module Utility.Data where
|
|
|
|
|
|
|
|
{- First item in the list that is not Nothing. -}
|
|
|
|
firstJust :: Eq a => [Maybe a] -> Maybe a
|
|
|
|
firstJust ms = case dropWhile (== Nothing) ms of
|
|
|
|
[] -> Nothing
|
|
|
|
(md:_) -> md
|
|
|
|
|
|
|
|
eitherToMaybe :: Either a b -> Maybe b
|
|
|
|
eitherToMaybe = either (const Nothing) Just
|