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

  1. -----------------------------------------------------------------------------
  2. -- Standard Library: Ix operations
  3. --
  4. -- Suitable for use with Hugs 98
  5. -----------------------------------------------------------------------------
  6.  
  7. module Ix ( 
  8.     -- official Haskell 98 interface: Ix(range, index, inRange), rangeSize 
  9.     Ix(range, index, inRange, rangeSize)
  10.     ) where
  11.  
  12. -- This module is empty; Ix is currently defined in the prelude, but should
  13. -- eventually be moved to this library file instead.
  14.  
  15. -----------------------------------------------------------------------------
  16.