home *** CD-ROM | disk | FTP | other *** search
/ PSION CD 2 / PsionCDVol2.iso / Programs / 876 / hugs.sis / Char.hs < prev    next >
Encoding:
Text File  |  2000-09-21  |  828 b   |  26 lines

  1. -----------------------------------------------------------------------------
  2. -- Standard Library: Char operations
  3. --
  4. -- Suitable for use with Hugs 98
  5. -----------------------------------------------------------------------------
  6.  
  7. module Char ( 
  8.     isAscii, isLatin1, isControl, isPrint, isSpace, isUpper, isLower,
  9.     isAlpha, isDigit, isOctDigit, isHexDigit, isAlphaNum,
  10.     digitToInt, intToDigit,
  11.     toUpper, toLower,
  12.     ord, chr,
  13.     readLitChar, showLitChar, lexLitChar,
  14.  
  15.     -- ... and what the prelude exports
  16.     Char, String
  17.     ) where
  18.  
  19. -- This module is (almost) empty; Char operations are currently defined in
  20. -- the prelude, but should eventually be moved to this library file instead.
  21. -- No Unicode support yet. 
  22.  
  23. isLatin1 c = True
  24.  
  25. -----------------------------------------------------------------------------
  26.