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.
imapMaybe :: (Int -> a -> Maybe b) -> NonEmptyVector a -> Vector bnonempty-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]
texmapM :: (Applicative m, Monad m) => (LaTeX -> Bool) -> (LaTeX -> m LaTeX) -> LaTeX -> m LaTeXHaTeX Text.LaTeX.Base.Syntax Version of texmap where the function returns values in a Monad.
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.
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.
foldMapMC :: (Monad m, Monoid w) => (a -> m w) -> ConduitT a o m wclassy-prelude-conduit ClassyPrelude.Conduit Apply the provided monadic mapping function and monoidal combine all values.
foldMapMCE :: (Monad m, MonoFoldable mono, Monoid w) => (Element mono -> m w) -> ConduitT mono o m wclassy-prelude-conduit ClassyPrelude.Conduit Apply the provided monadic mapping function and monoidal combine all elements in the chunked stream.
-
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.
orderCommonMapMesitornithiformes :: Fake Textfakedata Faker.Creature.Bird No documentation available.
orderCommonMapMusophagiformes :: Fake Textfakedata Faker.Creature.Bird No documentation available.
asyncMapM :: (a -> IO b) -> [a] -> IO [b]liquid-fixpoint Language.Fixpoint.Misc No documentation available.