Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

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

  1. imapM_ :: (Context a, Monad m) => ((Int, Int) -> a -> m b) -> Matrix a -> m ()

    matrices Data.Matrix

    O(m*n) Apply the monadic action to every element and its index, ignoring the results.

  2. imap :: forall (v :: Type -> Type) a b . (Vector v a, Vector v b) => ((Int, Int) -> a -> b) -> Matrix v a -> Matrix v b

    matrices Data.Matrix.Generic

    No documentation available.

  3. imapM :: forall (v :: Type -> Type) a b m . (Vector v a, Vector v b, Monad m) => ((Int, Int) -> a -> m b) -> Matrix v a -> m (Matrix v b)

    matrices Data.Matrix.Generic

    O(m*n) Apply the monadic action to every element and its index, yielding a matrix of results.

  4. imapM_ :: forall (v :: Type -> Type) a m b . (Vector v a, Monad m) => ((Int, Int) -> a -> m b) -> Matrix v a -> m ()

    matrices Data.Matrix.Generic

    O(m*n) Apply the monadic action to every element and its index, ignoring the results.

  5. imap :: (Context a, Context b) => ((Int, Int) -> a -> b) -> Matrix a -> Matrix b

    matrices Data.Matrix.Storable

    No documentation available.

  6. imapM :: (Context a, Context b, Monad m) => ((Int, Int) -> a -> m b) -> Matrix a -> m (Matrix b)

    matrices Data.Matrix.Storable

    O(m*n) Apply the monadic action to every element and its index, yielding a matrix of results.

  7. imapM_ :: (Context a, Monad m) => ((Int, Int) -> a -> m b) -> Matrix a -> m ()

    matrices Data.Matrix.Storable

    O(m*n) Apply the monadic action to every element and its index, ignoring the results.

  8. imap :: forall (v :: Type -> Type) a b . (Vector v a, Vector v b) => ((Int, Int) -> a -> b) -> SymMatrix v a -> SymMatrix v b

    matrices Data.Matrix.Symmetric.Generic

    Upper triangular imap, i.e., i <= j

  9. imap :: (Context a, Context b) => ((Int, Int) -> a -> b) -> Matrix a -> Matrix b

    matrices Data.Matrix.Unboxed

    No documentation available.

  10. imapM :: (Context a, Context b, Monad m) => ((Int, Int) -> a -> m b) -> Matrix a -> m (Matrix b)

    matrices Data.Matrix.Unboxed

    O(m*n) Apply the monadic action to every element and its index, yielding a matrix of results.

Page 950 of many | Previous | Next