home *** CD-ROM | disk | FTP | other *** search
- -----------------------------------------------------------------------------
- -- Standard Library: Ix operations
- --
- -- Suitable for use with Hugs 98
- -----------------------------------------------------------------------------
-
- module Ix (
- -- official Haskell 98 interface: Ix(range, index, inRange), rangeSize
- Ix(range, index, inRange, rangeSize)
- ) where
-
- -- This module is empty; Ix is currently defined in the prelude, but should
- -- eventually be moved to this library file instead.
-
- -----------------------------------------------------------------------------
-