summaryrefslogtreecommitdiff
path: root/Utility/Data.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Utility/Data.hs')
-rw-r--r--Utility/Data.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Utility/Data.hs b/Utility/Data.hs
index 27c0a82..5510845 100644
--- a/Utility/Data.hs
+++ b/Utility/Data.hs
@@ -7,7 +7,10 @@
{-# OPTIONS_GHC -fno-warn-tabs #-}
-module Utility.Data where
+module Utility.Data (
+ firstJust,
+ eitherToMaybe,
+) where
{- First item in the list that is not Nothing. -}
firstJust :: Eq a => [Maybe a] -> Maybe a