X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Data%2FIx.hs;h=6af2c19e355bfc94fdb8d041a59c29a5655ddb8e;hb=7e8c7becf29c0fd359ff7e205b60df3ef4b920fb;hp=c9ebe9287efb854fd92fd9eaae42fb1a36c7ecc9;hpb=8ff1331816a5af5a51e57467614296e9053e9d22;p=ghc-base.git diff --git a/Data/Ix.hs b/Data/Ix.hs index c9ebe92..6af2c19 100644 --- a/Data/Ix.hs +++ b/Data/Ix.hs @@ -5,30 +5,17 @@ -- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org --- Stability : provisional +-- Stability : stable -- Portability : portable -- --- Class of index types. --- --- The "Ix" class is used to map a continuous subrange of values in a type onto --- integers. It is used primarily for array indexing (see Section 6 --- ). The "Ix" --- class contains the methods range, index, and inRange. The 'index' operation --- maps a bounding pair, which defines the lower and upper bounds of the range, --- and a subscript, to an integer. The 'range' operation enumerates all --- subscripts; the 'inRange' operation tells whether a particular subscript --- lies in the range defined by a bounding pair. --- --- An implementation is entitled to assume the following laws about these --- operations: --- --- > range (l,u) !! index (l,u) i == i -- when i is in range --- --- > inRange (l,u) i == i `elem` range (l,u) +-- The 'Ix' class is used to map a contiguous subrange of values in +-- type onto integers. It is used primarily for array indexing +-- (see "Data.Array", "Data.Array.IArray" and "Data.Array.MArray"). -- ----------------------------------------------------------------------------- module Data.Ix ( + -- * The 'Ix' class Ix ( range -- :: (Ix a) => (a,a) -> [a] , index -- :: (Ix a) => (a,a) -> a -> Int @@ -48,7 +35,7 @@ module Data.Ix -- Implementation checked wrt. Haskell 98 lib report, 1/99. - -- * Deriving Instances of Ix + -- * Deriving Instances of 'Ix' -- | Derived instance declarations for the class 'Ix' are only possible -- for enumerations (i.e. datatypes having only nullary constructors) -- and single-constructor datatypes, including arbitrarily large tuples, @@ -78,3 +65,12 @@ import Prelude #ifdef __GLASGOW_HASKELL__ import GHC.Arr #endif + +#ifdef __HUGS__ +import Hugs.Prelude( Ix(..) ) +#endif + +#ifdef __NHC__ +import Ix (Ix(..)) +#endif +