Remove Control.Parallel*, now in package parallel
[haskell-directory.git] / GHC / Exts.hs
index 6386932..be3fe53 100644 (file)
@@ -16,16 +16,23 @@ module GHC.Exts
        (
         -- * Representations of some basic types
         Int(..),Word(..),Float(..),Double(..),Integer(..),Char(..),
+       Ptr(..), FunPtr(..),
 
         -- * Primitive operations
-        module GHC.Prim
+        module GHC.Prim,
        shiftL#, shiftRL#, iShiftL#, iShiftRA#, iShiftRL#,
 
        -- * Fusion
        build, augment,
 
-       -- * Linear implicit parameter support
-       Splittable(..),
+       -- * Overloaded string literals
+       IsString(..),
+
+       -- * Debugging
+       breakpoint, breakpointCond,
+
+       -- * Ids with special behaviour
+       lazy, inline,
 
        ) where
 
@@ -36,6 +43,6 @@ import GHC.Base
 import GHC.Word
 import GHC.Num
 import GHC.Float
+import GHC.Ptr
+import Data.String
 
-class Splittable t where
-  split :: t -> (t,t)