1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
{-# LANGUAGE NoImplicitPrelude #-}
module Data.List
(
module Data.Foldable
-- , module Data.Traversable
, module Data.OldList
) where
import Data.Foldable hiding (toList)
--import Data.Traversable
import Data.OldList hiding (all, any, and, concat, concatMap, elem, find,
foldl, foldl1, foldl', foldr, foldr1,
-- mapAccumL, mapAccumR, -- from Traversable,
fold, foldMap, foldMap', fold, foldr, foldr', foldl, foldl',
maximum, minimum, -- maximumBy, minimumBy,
length, notElem, null, or, product, sum)
import Data.Semigroup
import Data.Monoid
instance Semigroup [a] where
(<>) = (++)
instance Monoid [a] where
mempty = []
mconcat xss = [x | xs <- xss, x <- xs]
|