Hoogle Search

Within LTS Haskell 24.41 (ghc-9.10.3)

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

  1. chunkMapM_ :: Monad m => (ByteString -> m x) -> ByteStream m r -> m r

    streaming-bytestring Streaming.ByteString.Internal

    Like chunkMapM, but discard the result of each effectful mapping.

  2. cmapM :: forall w (m :: Type -> Type) cx cy . (Get w m cx, Set w m cy, Members w m cx) => (cx -> SystemT w m cy) -> SystemT w m ()

    apecs Apecs

    Monadically iterates over all entites with a cx, and writes their cy.

  3. cmapM_ :: forall w (m :: Type -> Type) c . (Get w m c, Members w m c) => (c -> SystemT w m ()) -> SystemT w m ()

    apecs Apecs

    Monadically iterates over all entites with a cx

  4. cmapM :: forall w (m :: Type -> Type) cx cy . (Get w m cx, Set w m cy, Members w m cx) => (cx -> SystemT w m cy) -> SystemT w m ()

    apecs Apecs.System

    Monadically iterates over all entites with a cx, and writes their cy.

  5. cmapM_ :: forall w (m :: Type -> Type) c . (Get w m c, Members w m c) => (c -> SystemT w m ()) -> SystemT w m ()

    apecs Apecs.System

    Monadically iterates over all entites with a cx

  6. imapM :: (Vector v a, Vector v b, Applicative f) => (Int -> a -> f b) -> v a -> f (v b)

    fixed-vector Data.Vector.Fixed

    Apply monadic function to every element of the vector and its index.

  7. imapM_ :: (Vector v a, Applicative f) => (Int -> a -> f b) -> v a -> f ()

    fixed-vector Data.Vector.Fixed

    Apply monadic function to every element of the vector and its index and discard result.

  8. imapM :: forall (n :: PeanoNum) f a b . (ArityPeano n, Applicative f) => (Int -> a -> f b) -> ContVec n a -> f (ContVec n b)

    fixed-vector Data.Vector.Fixed.Cont

    Apply monadic function to every element of the vector and its index.

  9. imapM_ :: forall (n :: PeanoNum) f a b . (ArityPeano n, Applicative f) => (Int -> a -> f b) -> ContVec n a -> f ()

    fixed-vector Data.Vector.Fixed.Cont

    Apply monadic action to each element of vector and its index and ignore result.

  10. imapMG :: (Vector v a, Vector w b, Dim w ~ Dim v, Monad m) => (Int -> a -> m b) -> v a -> m (w b)

    fixed-vector Data.Vector.Fixed.Generic

    Monadic map over vector.

Page 87 of many | Previous | Next