propellor/src/Utility/Data.hs

20 lines
432 B
Haskell
Raw Normal View History

{- utilities for simple data types
-
2015-04-29 18:26:13 +00:00
- Copyright 2013 Joey Hess <id@joeyh.name>
-
2014-05-10 14:05:28 +00:00
- License: BSD-2-clause
-}
2015-05-27 18:55:31 +00:00
{-# OPTIONS_GHC -fno-warn-tabs #-}
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