Hoogle Search

Within LTS Haskell 24.42 (ghc-9.10.3)

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

  1. concatMapM :: Monad m => (a -> m (Stream m b)) -> Stream m a -> Stream m b

    streamly-core Streamly.Internal.Data.Stream

    Map a stream producing monadic function on each element of the stream and then flatten the results into a single stream. Since the stream generation function is monadic, unlike concatMap, it can produce an effect at the beginning of each iteration of the inner loop. See unfoldMany for a fusible alternative.

  2. rollingMapM :: Monad m => (Maybe a -> a -> m b) -> Stream m a -> Stream m b

    streamly-core Streamly.Internal.Data.Stream

    Like rollingMap but with an effectful map function. Pre-release

  3. concatMapM :: Monad m => (b -> m (Unfold m a c)) -> Unfold m a b -> Unfold m a c

    streamly-core Streamly.Internal.Data.Unfold

    Map an unfold generating action to each element of an unfold and flatten the results into a single stream.

  4. lmapM :: Monad m => (a -> m c) -> Unfold m c b -> Unfold m a b

    streamly-core Streamly.Internal.Data.Unfold

    Map an action on the input argument of the Unfold.

    lmapM f = Unfold.many (Unfold.functionM f)
    

  5. concatMapM :: Monad m => (a -> m (Stream m b)) -> Stream m a -> Stream m b

    vector-stream Data.Stream.Monadic

    No documentation available.

  6. concatMapM :: Monad m => (a -> m [b]) -> [a] -> m [b]

    Agda Agda.Utils.Monad

    No documentation available.

  7. nodeIndicesStatsSegVersionMapMemory :: NodeIndicesStats -> Bytes

    bloodhound Database.Bloodhound.Client.Cluster

    No documentation available.

  8. nodeIndicesStatsSegVersionMapMemory :: NodeIndicesStats -> Bytes

    bloodhound Database.Bloodhound.Common.Types

    No documentation available.

  9. concatMapM :: (Monad m, Traversable f) => (a -> m [b]) -> f a -> m [b]

    breakpoint Debug.Breakpoint.GhcFacade

    Monadic version of concatMap

  10. setMapMaybe :: Ord b => (a -> Maybe b) -> Set a -> Set b

    cabal-debian Debian.Debianize.Prelude

    No documentation available.

Page 92 of many | Previous | Next