2011-12-20 15:01:50 +00:00
|
|
|
{- Parts of the Prelude are partial functions, which are a common source of
|
|
|
|
- bugs.
|
2011-12-09 22:10:41 +00:00
|
|
|
-
|
|
|
|
- This exports functions that conflict with the prelude, which avoids
|
2017-02-11 09:38:49 +00:00
|
|
|
- them being accidentally used.
|
2011-12-09 22:10:41 +00:00
|
|
|
-}
|
|
|
|
|
2015-05-10 20:38:49 +00:00
|
|
|
{-# OPTIONS_GHC -fno-warn-tabs #-}
|
|
|
|
|
2019-11-21 19:38:06 +00:00
|
|
|
module Utility.PartialPrelude (
|
|
|
|
Utility.PartialPrelude.read,
|
|
|
|
Utility.PartialPrelude.head,
|
|
|
|
Utility.PartialPrelude.tail,
|
|
|
|
Utility.PartialPrelude.init,
|
|
|
|
Utility.PartialPrelude.last,
|
|
|
|
Utility.PartialPrelude.readish,
|
|
|
|
Utility.PartialPrelude.headMaybe,
|
|
|
|
Utility.PartialPrelude.lastMaybe,
|
|
|
|
Utility.PartialPrelude.beginning,
|
|
|
|
Utility.PartialPrelude.end,
|
|
|
|
) where
|
2011-12-09 22:10:41 +00:00
|
|
|
|
2012-01-23 20:57:45 +00:00
|
|
|
import qualified Data.Maybe
|
|
|
|
|
2011-12-15 22:23:07 +00:00
|
|
|
{- read should be avoided, as it throws an error
|
2012-01-23 21:00:10 +00:00
|
|
|
- Instead, use: readish -}
|
2011-12-15 20:59:18 +00:00
|
|
|
read :: Read a => String -> a
|
|
|
|
read = Prelude.read
|
|
|
|
|
|
|
|
{- head is a partial function; head [] is an error
|
2011-12-15 22:11:42 +00:00
|
|
|
- Instead, use: take 1 or headMaybe -}
|
2011-12-09 22:10:41 +00:00
|
|
|
head :: [a] -> a
|
|
|
|
head = Prelude.head
|
|
|
|
|
2011-12-15 20:59:18 +00:00
|
|
|
{- tail is also partial
|
|
|
|
- Instead, use: drop 1 -}
|
2011-12-15 19:39:33 +00:00
|
|
|
tail :: [a] -> [a]
|
2011-12-09 22:10:41 +00:00
|
|
|
tail = Prelude.tail
|
|
|
|
|
2011-12-15 20:59:18 +00:00
|
|
|
{- init too
|
|
|
|
- Instead, use: beginning -}
|
2011-12-15 19:39:33 +00:00
|
|
|
init :: [a] -> [a]
|
2011-12-09 22:10:41 +00:00
|
|
|
init = Prelude.init
|
|
|
|
|
2011-12-15 20:59:18 +00:00
|
|
|
{- last too
|
2011-12-15 22:11:42 +00:00
|
|
|
- Instead, use: end or lastMaybe -}
|
2011-12-09 22:10:41 +00:00
|
|
|
last :: [a] -> a
|
|
|
|
last = Prelude.last
|
2011-12-09 22:57:09 +00:00
|
|
|
|
2011-12-15 22:23:07 +00:00
|
|
|
{- Attempts to read a value from a String.
|
|
|
|
-
|
2018-10-30 03:13:36 +00:00
|
|
|
- Unlike Text.Read.readMaybe, this ignores some trailing text
|
|
|
|
- after the part that can be read. However, if the trailing text looks
|
|
|
|
- like another readable value, it fails.
|
2011-12-15 22:23:07 +00:00
|
|
|
-}
|
2012-01-23 21:00:10 +00:00
|
|
|
readish :: Read a => String -> Maybe a
|
|
|
|
readish s = case reads s of
|
2011-12-15 22:23:07 +00:00
|
|
|
((x,_):_) -> Just x
|
|
|
|
_ -> Nothing
|
|
|
|
|
2011-12-15 22:11:42 +00:00
|
|
|
{- Like head but Nothing on empty list. -}
|
|
|
|
headMaybe :: [a] -> Maybe a
|
2012-01-23 20:57:45 +00:00
|
|
|
headMaybe = Data.Maybe.listToMaybe
|
2011-12-15 22:11:42 +00:00
|
|
|
|
|
|
|
{- Like last but Nothing on empty list. -}
|
|
|
|
lastMaybe :: [a] -> Maybe a
|
|
|
|
lastMaybe [] = Nothing
|
|
|
|
lastMaybe v = Just $ Prelude.last v
|
|
|
|
|
2011-12-15 20:59:18 +00:00
|
|
|
{- All but the last element of a list.
|
|
|
|
- (Like init, but no error on an empty list.) -}
|
|
|
|
beginning :: [a] -> [a]
|
|
|
|
beginning [] = []
|
2011-12-16 02:19:05 +00:00
|
|
|
beginning l = Prelude.init l
|
2011-12-15 20:59:18 +00:00
|
|
|
|
|
|
|
{- Like last, but no error on an empty list. -}
|
|
|
|
end :: [a] -> [a]
|
|
|
|
end [] = []
|
2011-12-16 02:19:05 +00:00
|
|
|
end l = [Prelude.last l]
|