From: simonmar Date: Tue, 28 May 2002 11:41:29 +0000 (+0000) Subject: [project @ 2002-05-28 11:41:29 by simonmar] X-Git-Tag: nhc98-1-18-release~1004 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=d40426fef1eee05caa08c4e2d4dab4dcd63d976d;p=ghc-base.git [project @ 2002-05-28 11:41:29 by simonmar] Documentation tweaks --- diff --git a/GHC/Exts.hs b/GHC/Exts.hs index a1e6db9..6386932 100644 --- a/GHC/Exts.hs +++ b/GHC/Exts.hs @@ -8,26 +8,24 @@ -- Stability : internal -- Portability : non-portable (GHC Extensions) -- --- GHC Extensions: this is the Approved Way to get at GHC-specific stuff. +-- GHC Extensions: this is the Approved Way to get at GHC-specific extensions. -- ----------------------------------------------------------------------------- module GHC.Exts ( - -- the representation of some basic types: + -- * Representations of some basic types Int(..),Word(..),Float(..),Double(..),Integer(..),Char(..), - -- Fusion - build, augment, - - -- shifty wrappers from GHC.Base + -- * Primitive operations + module GHC.Prim shiftL#, shiftRL#, iShiftL#, iShiftRA#, iShiftRL#, - -- for linear implicit parameters: - Splittable(..), + -- * Fusion + build, augment, - -- and finally, all the unboxed primops of GHC! - module GHC.Prim + -- * Linear implicit parameter support + Splittable(..), ) where