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.
chunkMapM_ :: Monad m => (ByteString -> m x) -> ByteStream m r -> m rstreaming-bytestring Streaming.ByteString.Internal Like chunkMapM, but discard the result of each effectful mapping.
-
apecs Apecs Monadically iterates over all entites with a cx, and writes their cy.
-
apecs Apecs Monadically iterates over all entites with a cx
-
apecs Apecs.System Monadically iterates over all entites with a cx, and writes their cy.
-
apecs Apecs.System Monadically iterates over all entites with a cx
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.
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.
-
fixed-vector Data.Vector.Fixed.Cont Apply monadic function to every element of the vector and its index.
-
fixed-vector Data.Vector.Fixed.Cont Apply monadic action to each element of vector and its index and ignore result.
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.