X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=GHC%2FTypes.hs;h=b2d02916065f05c51707782a34045807104ca3d6;hb=refs%2Ftags%2FHaskell_2010_report_generated;hp=8e3e71a538998b354e54fb60aa184be9b2af8bc5;hpb=b051c4f7046c494f16946f7c356f23dea74dea1a;p=ghc-prim.git diff --git a/GHC/Types.hs b/GHC/Types.hs index 8e3e71a..b2d0291 100644 --- a/GHC/Types.hs +++ b/GHC/Types.hs @@ -26,6 +26,18 @@ infixr 5 : data [] a = [] | a : [a] +{-| 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#