Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. type Ix = Int

    boltzmann-samplers Boltzmann.Data.Oracle

    No documentation available.

  2. class Ord a => Ix a

    Agda Agda.Utils.SmallSet

    The Ix class is used to map a contiguous subrange of values in a type onto integers. It is used primarily for array indexing (see the array package). The first argument (l,u) of each of these operations is a pair specifying the lower and upper bounds of a contiguous subrange of values. An implementation is entitled to assume the following laws about these operations:

  3. IX :: PPPCategory

    ENIG Data.Text.ENIG.Data

    이/null

  4. Ix :: PPPIdentity

    ENIG Data.Text.ENIG.Data

    Continuous

  5. module Control.Monad.Trans.Ix

    No documentation available.

  6. newtype Ix (m :: Type -> Type) (i :: k) (j :: k1) a

    do-notation Control.Monad.Trans.Ix

    The free indexed monad generated from a monad m. Users are not expected to use Ix directly, but to newtype over it, specializing the kinds of i and j as necessary. GeneralizedNewtypeDeriving can be used to get the instances of IxFunctor, IxPointed, IxApplicative, IxMonad, IxMonadZero and IxMonadPlus for free.

  7. Ix :: m a -> Ix (m :: Type -> Type) (i :: k) (j :: k1) a

    do-notation Control.Monad.Trans.Ix

    No documentation available.

  8. ixmap :: (Ix i, Ix j) => (i, i) -> (i -> j) -> Array j e -> Array i e

    base GHC.Arr

    ixmap allows for transformations on array indices. It may be thought of as providing function composition on the right with the mapping that the original array embodies. A similar transformation of array values may be achieved using fmap from the Array instance of the Functor class.

  9. ixmap :: (Ix i, Ix j) => (i, i) -> (i -> j) -> Array j e -> Array i e

    array Data.Array

    No documentation available.

  10. ixmap :: (IArray a e, Ix i, Ix j) => (i, i) -> (i -> j) -> a j e -> a i e

    array Data.Array.Base

    Returns a new array derived from the original array by applying a function to each of the indices.

Page 4 of many | Previous | Next