[project @ 2002-01-02 15:01:27 by simonmar]
[ghc-base.git] / GHC / Exts.hs
1 -----------------------------------------------------------------------------
2 -- 
3 -- Module      :  GHC.Exts
4 -- Copyright   :  (c) The University of Glasgow 2001
5 -- License     :  BSD-style (see the file libraries/core/LICENSE)
6 -- 
7 -- Maintainer  :  libraries@haskell.org
8 -- Stability   :  experimental
9 -- Portability :  non-portable
10 --
11 -- $Id: Exts.hs,v 1.2 2002/01/02 15:01:27 simonmar Exp $
12 --
13 -- GHC Extensions: this is the Approved Way to get at GHC-specific stuff.
14 --
15 -----------------------------------------------------------------------------
16
17 module GHC.Exts
18        (
19         -- the representation of some basic types:
20         Int(..),Word(..),Float(..),Double(..),Integer(..),Char(..),
21
22         -- Fusion
23         build, augment,
24
25         -- shifty wrappers from GHC.Base
26         shiftL#, shiftRL#, iShiftL#, iShiftRA#, iShiftRL#,
27
28         -- and finally, all the unboxed primops of GHC!
29         module GHC.Prim
30
31        ) where
32
33 import Prelude
34
35 import {-# SOURCE #-} GHC.Prim
36 import GHC.Base
37 import GHC.Word
38 import GHC.Num
39 import GHC.Float