Also export lines, words, unlines and unwords from Data.String
authorBas van Dijk <v.dijk.bas@gmail.com>
Mon, 18 Oct 2010 21:03:17 +0000 (21:03 +0000)
committerBas van Dijk <v.dijk.bas@gmail.com>
Mon, 18 Oct 2010 21:03:17 +0000 (21:03 +0000)
Data/String.hs

index 4245fa2..c2dc17e 100644 (file)
@@ -9,19 +9,27 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- Things related to the String type.
+-- The @String@ type and associated operations.
 --
 -----------------------------------------------------------------------------
 
 module Data.String (
    String
  , IsString(..)
+
+ -- * Functions on strings
+ , lines
+ , words
+ , unlines
+ , unwords
  ) where
 
 #ifdef __GLASGOW_HASKELL__
 import GHC.Base
 #endif
 
+import Data.List (lines, words, unlines, unwords)
+
 -- | Class for string-like datastructures; used by the overloaded string
 --   extension (-foverloaded-strings in GHC).
 class IsString a where