Hoogle Search

Within LTS Haskell 24.19 (ghc-9.10.3)

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

  1. imapMaybe :: (Int -> a -> Maybe b) -> NonEmptyVector a -> Vector b

    nonempty-vector Data.Vector.NonEmpty

    O(n) Drop elements when predicate, applied to index and value, returns Nothing If no elements satisfy the predicate, the resulting vector may be empty.

    >>> imapMaybe (\i a -> if a == 2 || i == 2 then Nothing else Just a) (unsafeFromList [1..3])
    [1]
    

  2. texmapM :: (Applicative m, Monad m) => (LaTeX -> Bool) -> (LaTeX -> m LaTeX) -> LaTeX -> m LaTeX

    HaTeX Text.LaTeX.Base.Syntax

    Version of texmap where the function returns values in a Monad.

  3. imapMA_ :: (Monad m, UnboxRepClass c) => (Point -> c -> m ()) -> Array c -> m ()

    LambdaHack Game.LambdaHack.Common.PointArray

    Map monadically over an array (function applied to each element and its index) and ignore the results.

  4. concatMapMC :: (Monad m, MonoFoldable mono) => (a -> m mono) -> ConduitT a (Element mono) m ()

    classy-prelude-conduit ClassyPrelude.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.

  5. foldMapMC :: (Monad m, Monoid w) => (a -> m w) -> ConduitT a o m w

    classy-prelude-conduit ClassyPrelude.Conduit

    Apply the provided monadic mapping function and monoidal combine all values.

  6. foldMapMCE :: (Monad m, MonoFoldable mono, Monoid w) => (Element mono -> m w) -> ConduitT mono o m w

    classy-prelude-conduit ClassyPrelude.Conduit

    Apply the provided monadic mapping function and monoidal combine all elements in the chunked stream.

  7. omapMCE :: (Monad m, MonoTraversable mono) => (Element mono -> m (Element mono)) -> ConduitT mono mono m ()

    classy-prelude-conduit ClassyPrelude.Conduit

    Apply a monadic monomorphic transformation to all elements in a chunked stream. Unlike mapME, this will work on types like ByteString and Text which are MonoFunctor but not Functor.

  8. orderCommonMapMesitornithiformes :: Fake Text

    fakedata Faker.Creature.Bird

    No documentation available.

  9. orderCommonMapMusophagiformes :: Fake Text

    fakedata Faker.Creature.Bird

    No documentation available.

  10. asyncMapM :: (a -> IO b) -> [a] -> IO [b]

    liquid-fixpoint Language.Fixpoint.Misc

    No documentation available.

Page 88 of many | Previous | Next