From d05ee4e82cea5d9ff651bdd7ac65b9908c0ae20e Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Mon, 18 Oct 2010 21:03:17 +0000 Subject: [PATCH] Also export lines, words, unlines and unwords from Data.String --- Data/String.hs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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 -- 1.7.10.4