Remove Control.Parallel*, now in package parallel
[haskell-directory.git] / GHC / Exts.hs
index 109f286..be3fe53 100644 (file)
@@ -25,11 +25,15 @@ module GHC.Exts
        -- * Fusion
        build, augment,
 
-       -- * Linear implicit parameter support
-       Splittable(..),
+       -- * Overloaded string literals
+       IsString(..),
 
        -- * Debugging
-       breakpoint,
+       breakpoint, breakpointCond,
+
+       -- * Ids with special behaviour
+       lazy, inline,
+
        ) where
 
 import Prelude
@@ -40,6 +44,5 @@ import GHC.Word
 import GHC.Num
 import GHC.Float
 import GHC.Ptr
+import Data.String
 
-class Splittable t where
-  split :: t -> (t,t)