From d40426fef1eee05caa08c4e2d4dab4dcd63d976d Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 28 May 2002 11:41:29 +0000 Subject: [PATCH] [project @ 2002-05-28 11:41:29 by simonmar] Documentation tweaks --- GHC/Exts.hs | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) 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 -- 1.7.10.4