Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
classy-prelude-conduit ClassyPrelude.Conduit Apply a function to all the output values of a ConduitT. This mimics the behavior of fmap for a Source and Conduit in pre-0.4 days. It can also be simulated by fusing with the map conduit from Data.Conduit.List. Since 0.4.1
-
classy-prelude-conduit ClassyPrelude.Conduit Same as mapOutput, but use a function that returns Maybe values. Since 0.5.0
mapWhileC :: forall (m :: Type -> Type) a b . Monad m => (a -> Maybe b) -> ConduitT a b m ()classy-prelude-conduit ClassyPrelude.Conduit Map values as long as the result is Just.
mapHeadedness :: (forall x . () => h x -> h' x) -> Colonnade h a c -> Colonnade h' a ccolonnade Colonnade Map over the header type of a Colonnade.
-
colonnade Colonnade Map over the content in the header. This is similar performing fmap on a Colonnade except that the body content is unaffected.
mapConcurrently :: (Traversable t, MonadConc m) => (a -> m b) -> t a -> m (t b)concurrency Control.Concurrent.Classy.Async Maps a MonadConc-performing function over any Traversable data type, performing all the MonadConc actions concurrently, and returning the original data structure with the arguments replaced by the results. For example, mapConcurrently works with lists:
pages <- mapConcurrently getURL ["url1", "url2", "url3"]
mapConcurrently_ :: (Foldable f, MonadConc m) => (a -> m b) -> f a -> m ()concurrency Control.Concurrent.Classy.Async mapConcurrently_ is mapConcurrently with the return value discarded, just like mapM_.
mapTupleE :: (Type -> Exp -> Q Exp) -> Type -> Exp -> Maybe (Q Exp)data-effects-th Data.Effect.HFunctor.TH.Internal No documentation available.
mapTree :: (a -> b) -> Tree a -> Tree bdebian Debian.Apt.Dependencies No documentation available.
mapExn :: forall e m a . (MonadCatch m, Exception e) => m a -> (e -> e) -> m adebian Debian.Loc No documentation available.