X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=GHC%2FTypes.hs;h=59ce3860a1a26af6f5f783a96cc8301dac602678;hb=49d560213f818de8ed7713ed9c3bf2ed210b076a;hp=8e3e71a538998b354e54fb60aa184be9b2af8bc5;hpb=e4efc0b9f94cffabc12aff67cc8f043b019b90a3;p=ghc-prim.git diff --git a/GHC/Types.hs b/GHC/Types.hs index 8e3e71a..59ce386 100644 --- a/GHC/Types.hs +++ b/GHC/Types.hs @@ -16,7 +16,7 @@ {-# OPTIONS_GHC -XNoImplicitPrelude #-} -module GHC.Types (Char(..), Int(..), Float(..), Double(..), IO(..)) where +module GHC.Types (Bool(..), Char(..), Int(..), Float(..), Double(..), IO(..)) where import GHC.Prim -- We need Inl etc behind the scenes for the type definitions @@ -26,6 +26,20 @@ infixr 5 : data [] a = [] | a : [a] +data Bool = False | True + +{-| The character type 'Char' is an enumeration whose values represent +Unicode (or equivalently ISO\/IEC 10646) characters +(see for details). +This set extends the ISO 8859-1 (Latin-1) character set +(the first 256 charachers), which is itself an extension of the ASCII +character set (the first 128 characters). +A character literal in Haskell has type 'Char'. + +To convert a 'Char' to or from the corresponding 'Int' value defined +by Unicode, use 'Prelude.toEnum' and 'Prelude.fromEnum' from the +'Prelude.Enum' class respectively (or equivalently 'ord' and 'chr'). +-} data Char = C# Char# data Int = I# Int#