From: Bas van Dijk Date: Mon, 18 Oct 2010 21:03:17 +0000 (+0000) Subject: Also export lines, words, unlines and unwords from Data.String X-Git-Url: http://git.megacz.com/?p=ghc-base.git;a=commitdiff_plain;h=d05ee4e82cea5d9ff651bdd7ac65b9908c0ae20e Also export lines, words, unlines and unwords from Data.String --- diff --git a/Data/String.hs b/Data/String.hs index 4245fa2..c2dc17e 100644 --- a/Data/String.hs +++ b/Data/String.hs @@ -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