Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. simapM_ :: forall r ix a b m . (Stream r ix a, Monad m) => (ix -> a -> m b) -> Array r ix a -> m ()

    massiv Data.Massiv.Vector

    Traverse a stream vector with a monadic index aware function, while discarding the result

    Examples

  2. smapM_ :: forall r ix a b m . (Stream r ix a, Monad m) => (a -> m b) -> Array r ix a -> m ()

    massiv Data.Massiv.Vector

    Traverse a stream vector with a monadic function, while discarding the result

    Examples

  3. 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.

  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. 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.

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

    matrices Data.Matrix.Unboxed

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

  7. imapM_ :: Monad m => (Int -> a -> m b) -> Vector a -> m ()

    rebase Rebase.Data.Vector

    No documentation available.

  8. imapM_ :: (Monad m, Vector v a) => (Int -> a -> m b) -> v a -> m ()

    rebase Rebase.Data.Vector.Generic

    No documentation available.

  9. imapM_ :: (PrimMonad m, MVector v a) => (Int -> a -> m b) -> v (PrimState m) a -> m ()

    rebase Rebase.Data.Vector.Generic.Mutable

    No documentation available.

  10. imapM_ :: PrimMonad m => (Int -> a -> m b) -> MVector (PrimState m) a -> m ()

    rebase Rebase.Data.Vector.Mutable

    No documentation available.

Page 15 of many | Previous | Next