packages feed

ListLike 3.1.7 → 3.1.7.1

raw patch · 3 files changed

+1/−5 lines, 3 filesdep ~base

Dependency ranges changed: base

Files

ListLike.cabal view
@@ -1,5 +1,5 @@ Name: ListLike-Version: 3.1.7+Version: 3.1.7.1 License: BSD3 Maintainer: John Lato <jwlato@gmail.com> Author: John Goerzen
src/Data/ListLike/Base.hs view
@@ -598,7 +598,6 @@     findIndex = L.findIndex     sequence = M.sequence . toList     -- mapM = M.mapM-    -- mapM_ = M.mapM_     nub = L.nub     delete = L.delete     deleteFirsts = (L.\\)
src/Data/ListLike/Instances.hs view
@@ -151,7 +151,6 @@     -- do monadic stuff via a list instead     sequence  = liftM fromList . P.sequence  . toList     mapM func = liftM fromList . P.mapM func . toList-    mapM_ func = P.mapM_ func . toList     --nub = BS.nub     --delete = BS.delete     --deleteFirsts = BS.deleteFirsts@@ -260,7 +259,6 @@     --findIndices x = fromList . L.map fromIntegral . BSL.findIndices x     sequence  = liftM fromList . P.sequence  . toList     mapM func = liftM fromList . P.mapM func . toList-    mapM_ func = P.mapM_ func . toList     --sequence = BSL.sequence     --mapM = BSL.mapM     --mapM_ = BSL.mapM_@@ -401,7 +399,6 @@     findIndices f = fromList . L.findIndices f . toList     sequence  = liftM fromList . P.sequence  . toList     mapM func = liftM fromList . P.mapM func . toList-    mapM_ func = P.mapM_ func . toList     -- rigidMapM = mapM     nub = fromList . L.nub . toList     -- delete