Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapWithKey :: (k -> v1 -> v2) -> WeightedPSQ w k v1 -> WeightedPSQ w k v2cabal-install-solver Distribution.Solver.Modular.WeightedPSQ O(N). Update the values.
mapDeps :: (Component -> a -> b) -> ComponentDeps a -> ComponentDeps bcabal-install-solver Distribution.Solver.Types.ComponentDeps Keep only selected components (and their associated deps info).
mapMB :: (Int -> Int) -> Approx -> Approxcdar-mBound Data.CDAR.Approx No documentation available.
mapSubvectors :: (Vector u a, Vector v b) => (u a -> v b) -> Chimera u a -> Chimera v bchimera Data.Chimera Map subvectors of a stream, using a given length-preserving function.
-
classy-prelude-conduit ClassyPrelude.Conduit Consume a source with a strict accumulator, in a way piecewise defined by a controlling stream. The latter will be evaluated until it terminates.
>>> let f a s = liftM (:s) $ mapC (*a) =$ CL.take a >>> reverse $ runIdentity $ yieldMany [0..3] $$ mapAccumS f [] (yieldMany [1..]) [[],[1],[4,6],[12,15,18]] :: [[Int]]
-
classy-prelude-conduit ClassyPrelude.Conduit mapWhileC with a break condition dependent on a strict accumulator. Equivalently, mapAccum as long as the result is Right. Instead of producing a leftover, the breaking input determines the resulting accumulator via Left.
mapAccumWhileMC :: Monad m => (a -> s -> m (Either s (s, b))) -> s -> ConduitT a b m sclassy-prelude-conduit ClassyPrelude.Conduit Monadic mapAccumWhileC.
mapC :: forall (m :: Type -> Type) a b . Monad m => (a -> b) -> ConduitT a b m ()classy-prelude-conduit ClassyPrelude.Conduit Apply a transformation to all values in a stream.
-
classy-prelude-conduit ClassyPrelude.Conduit Apply a transformation to all elements in a chunked stream.
-
classy-prelude-conduit ClassyPrelude.Conduit Apply a function to all the input values of a ConduitT. Since 0.5.0