Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
bimapImproving :: (a -> c) -> (b -> d) -> (a :~> b) -> c :~> dtest-framework Test.Framework.Providers.API No documentation available.
treeMapParser :: (forall x . () => ArgumentReachability -> Option x -> b) -> Parser a -> OptTree boptparse-applicative Options.Applicative.Common Like mapParser, but collect the results in a tree structure.
-
conduit Conduit concatMap with an accumulator.
concatMapAccumMC :: Monad m => (a -> accum -> m (accum, [b])) -> accum -> ConduitT a b m ()conduit Conduit concatMapM with an accumulator.
-
conduit Conduit Apply the function to each value in the stream, resulting in a foldable value (e.g., a list). Then yield each of the individual values in that foldable value separately. Generalizes concatMap, mapMaybe, and mapFoldable.
-
conduit Conduit Apply the function to each element in the chunked stream, resulting in a foldable value (e.g., a list). Then yield each of the individual values in that foldable value separately. Generalizes concatMap, mapMaybe, and mapFoldable.
concatMapMC :: (Monad m, MonoFoldable mono) => (a -> m mono) -> ConduitT a (Element mono) m ()conduit Conduit Apply the monadic function to each value in the stream, resulting in a foldable value (e.g., a list). Then yield each of the individual values in that foldable value separately. Generalizes concatMapM, mapMaybeM, and mapFoldableM.
foldMapC :: forall (m :: Type -> Type) b a o . (Monad m, Monoid b) => (a -> b) -> ConduitT a o m bconduit Conduit Apply the provided mapping function and monoidal combine all values.
-
conduit Conduit Apply the provided mapping function and monoidal combine all elements of the chunked stream.
foldMapMC :: (Monad m, Monoid w) => (a -> m w) -> ConduitT a o m wconduit Conduit Apply the provided monadic mapping function and monoidal combine all values.