[project @ 1999-03-09 14:51:03 by sewardj]
[ghc-hetmet.git] / ghc / interpreter / lib / Ix.hs
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 -----------------------------------------------------------------------------