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.

  1. OutputMapCRtoLF :: TerminalMode

    unix System.Posix.Terminal

    OCRNL - (XSI) Map CR to NL on output

  2. OutputMapCRtoLF :: TerminalMode

    unix System.Posix.Terminal.ByteString

    OCRNL - (XSI) Map CR to NL on output

  3. OutputMapCRtoLF :: TerminalMode

    unix System.Posix.Terminal.PosixString

    OCRNL - (XSI) Map CR to NL on output

  4. bimapImproving :: (a -> c) -> (b -> d) -> (a :~> b) -> c :~> d

    test-framework Test.Framework.Providers.API

    No documentation available.

  5. treeMapParser :: (forall x . () => ArgumentReachability -> Option x -> b) -> Parser a -> OptTree b

    optparse-applicative Options.Applicative.Common

    Like mapParser, but collect the results in a tree structure.

  6. concatMapAccumC :: forall (m :: Type -> Type) a accum b . Monad m => (a -> accum -> (accum, [b])) -> accum -> ConduitT a b m ()

    conduit Conduit

    concatMap with an accumulator.

  7. concatMapAccumMC :: Monad m => (a -> accum -> m (accum, [b])) -> accum -> ConduitT a b m ()

    conduit Conduit

    concatMapM with an accumulator.

  8. concatMapC :: forall (m :: Type -> Type) mono a . (Monad m, MonoFoldable mono) => (a -> mono) -> ConduitT a (Element mono) m ()

    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.

  9. concatMapCE :: forall (m :: Type -> Type) mono w . (Monad m, MonoFoldable mono, Monoid w) => (Element mono -> w) -> ConduitT mono w m ()

    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.

  10. 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.

Page 425 of many | Previous | Next