packages feed

listlike-instances 0.2.3 → 0.2.3.1

raw patch · 7 files changed

+1/−7 lines, 7 files

Files

listlike-instances.cabal view
@@ -1,5 +1,5 @@ Name:                listlike-instances-Version:             0.2.3+Version:             0.2.3.1 Synopsis:            Extra instances of the ListLike class Description:         Provides ListLike instances for Vector and Text types Homepage:            http://jwlato.webfactional.com/haskell/listlike-instances
src/Data/ListLike/Text/Text.hs view
@@ -74,7 +74,6 @@      sequence  = liftM fromList . P.sequence  . toList     mapM func = liftM fromList . P.mapM func . toList-    mapM_ func = P.mapM_ func . toList  instance ListLikeIO T.Text Char where     hGetLine = TI.hGetLine
src/Data/ListLike/Text/TextLazy.hs view
@@ -72,7 +72,6 @@      sequence  = liftM fromList . P.sequence  . toList     mapM func = liftM fromList . P.mapM func . toList-    mapM_ func = P.mapM_ func . toList  instance ListLikeIO T.Text Char where     hGetLine = TI.hGetLine
src/Data/ListLike/Vector/Generic.hs view
@@ -79,7 +79,6 @@      sequence  = liftM fromList . P.sequence  . toList     mapM func = liftM fromList . P.mapM func . toList-    mapM_ func = P.mapM_ func . toList  instance (Eq (v Char), V.Vector v Char) => StringLike (v Char) where     toString = V.toList
src/Data/ListLike/Vector/Storable.hs view
@@ -75,7 +75,6 @@      sequence  = liftM fromList . P.sequence  . toList     mapM func = liftM fromList . P.mapM func . toList-    mapM_ func = P.mapM_ func . toList  instance StringLike (V.Vector Char) where     toString = toList
src/Data/ListLike/Vector/Unboxed.hs view
@@ -74,7 +74,6 @@      sequence  = liftM fromList . P.sequence  . toList     mapM func = liftM fromList . P.mapM func . toList-    mapM_ func = P.mapM_ func . toList  instance StringLike (V.Vector Char) where     toString = toList
src/Data/ListLike/Vector/Vector.hs view
@@ -73,7 +73,6 @@      sequence  = liftM fromList . P.sequence  . toList     mapM func = liftM fromList . P.mapM func . toList-    mapM_ func = P.mapM_ func . toList  instance StringLike (V.Vector Char) where     toString = toList