2011-12-20 11:01:50 -04:00
|
|
|
{- Parts of the Prelude are partial functions, which are a common source of
|
|
|
|
- bugs.
|
2011-12-09 18:10:41 -04:00
|
|
|
-
|
|
|
|
- This exports functions that conflict with the prelude, which avoids
|
|
|
|
- them being accidentially used.
|
|
|
|
-}
|
|
|
|
|
2011-12-20 11:01:50 -04:00
|
|
|
module Utility.PartialPrelude where
|
2011-12-09 18:10:41 -04:00
|
|
|
|
2012-01-23 16:57:45 -04:00
|
|
|
import qualified Data.Maybe
|
|
|
|
|
2011-12-15 18:23:07 -04:00
|
|
|
{- read should be avoided, as it throws an error
|
2012-01-23 17:00:10 -04:00
|
|
|
- Instead, use: readish -}
|
2011-12-15 16:59:18 -04:00
|
|
|
read :: Read a => String -> a
|
|
|
|
read = Prelude.read
|
|
|
|
|
|
|
|
{- head is a partial function; head [] is an error
|
2011-12-15 18:11:42 -04:00
|
|
|
- Instead, use: take 1 or headMaybe -}
|
2011-12-09 18:10:41 -04:00
|
|
|
head :: [a] -> a
|
|
|
|
head = Prelude.head
|
|
|
|
|
2011-12-15 16:59:18 -04:00
|
|
|
{- tail is also partial
|
|
|
|
- Instead, use: drop 1 -}
|
2011-12-15 15:39:33 -04:00
|
|
|
tail :: [a] -> [a]
|
2011-12-09 18:10:41 -04:00
|
|
|
tail = Prelude.tail
|
|
|
|
|
2011-12-15 16:59:18 -04:00
|
|
|
{- init too
|
|
|
|
- Instead, use: beginning -}
|
2011-12-15 15:39:33 -04:00
|
|
|
init :: [a] -> [a]
|
2011-12-09 18:10:41 -04:00
|
|
|
init = Prelude.init
|
|
|
|
|
2011-12-15 16:59:18 -04:00
|
|
|
{- last too
|
2011-12-15 18:11:42 -04:00
|
|
|
- Instead, use: end or lastMaybe -}
|
2011-12-09 18:10:41 -04:00
|
|
|
last :: [a] -> a
|
|
|
|
last = Prelude.last
|
2011-12-09 18:57:09 -04:00
|
|
|
|
2011-12-15 18:23:07 -04:00
|
|
|
{- Attempts to read a value from a String.
|
|
|
|
-
|
|
|
|
- Ignores leading/trailing whitespace, and throws away any trailing
|
|
|
|
- text after the part that can be read.
|
2012-01-23 16:57:45 -04:00
|
|
|
-
|
|
|
|
- readMaybe is available in Text.Read in new versions of GHC,
|
|
|
|
- but that one requires the entire string to be consumed.
|
2011-12-15 18:23:07 -04:00
|
|
|
-}
|
2012-01-23 17:00:10 -04:00
|
|
|
readish :: Read a => String -> Maybe a
|
|
|
|
readish s = case reads s of
|
2011-12-15 18:23:07 -04:00
|
|
|
((x,_):_) -> Just x
|
|
|
|
_ -> Nothing
|
|
|
|
|
2011-12-15 18:11:42 -04:00
|
|
|
{- Like head but Nothing on empty list. -}
|
|
|
|
headMaybe :: [a] -> Maybe a
|
2012-01-23 16:57:45 -04:00
|
|
|
headMaybe = Data.Maybe.listToMaybe
|
2011-12-15 18:11:42 -04:00
|
|
|
|
|
|
|
{- Like last but Nothing on empty list. -}
|
|
|
|
lastMaybe :: [a] -> Maybe a
|
|
|
|
lastMaybe [] = Nothing
|
|
|
|
lastMaybe v = Just $ Prelude.last v
|
|
|
|
|
2011-12-15 16:59:18 -04:00
|
|
|
{- All but the last element of a list.
|
|
|
|
- (Like init, but no error on an empty list.) -}
|
|
|
|
beginning :: [a] -> [a]
|
|
|
|
beginning [] = []
|
2011-12-15 22:19:05 -04:00
|
|
|
beginning l = Prelude.init l
|
2011-12-15 16:59:18 -04:00
|
|
|
|
|
|
|
{- Like last, but no error on an empty list. -}
|
|
|
|
end :: [a] -> [a]
|
|
|
|
end [] = []
|
2011-12-15 22:19:05 -04:00
|
|
|
end l = [Prelude.last l]
|