Hoogle Search

Within LTS Haskell 24.18 (ghc-9.10.3)

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

  1. mapMaybeWithKey :: Interval k e => (k -> a -> Maybe b) -> IntervalMap k a -> IntervalMap k b

    IntervalMap Data.IntervalMap.Generic.Lazy

    O(n). Map keys/values and collect the Just results.

  2. mapMaybe :: Interval k e => (a -> Maybe b) -> IntervalMap k a -> IntervalMap k b

    IntervalMap Data.IntervalMap.Generic.Strict

    O(n). Map values and collect the Just results.

  3. mapMaybeWithKey :: Interval k e => (k -> a -> Maybe b) -> IntervalMap k a -> IntervalMap k b

    IntervalMap Data.IntervalMap.Generic.Strict

    O(n). Map keys/values and collect the Just results.

  4. mapMaybe :: Interval k e => (a -> Maybe b) -> IntervalMap k a -> IntervalMap k b

    IntervalMap Data.IntervalMap.Lazy

    O(n). Map values and collect the Just results.

  5. mapMaybeWithKey :: Interval k e => (k -> a -> Maybe b) -> IntervalMap k a -> IntervalMap k b

    IntervalMap Data.IntervalMap.Lazy

    O(n). Map keys/values and collect the Just results.

  6. mapMaybe :: Interval k e => (a -> Maybe b) -> IntervalMap k a -> IntervalMap k b

    IntervalMap Data.IntervalMap.Strict

    O(n). Map values and collect the Just results.

  7. mapMaybeWithKey :: Interval k e => (k -> a -> Maybe b) -> IntervalMap k a -> IntervalMap k b

    IntervalMap Data.IntervalMap.Strict

    O(n). Map keys/values and collect the Just results.

  8. mapMonotonic :: (Interval k2 e, Ord k2) => (k1 -> k2) -> IntervalSet k1 -> IntervalSet k2

    IntervalMap Data.IntervalSet

    O(n). mapMonotonic f s == map f s, but works only when f is strictly monotonic. That is, for any values x and y, if x < y then f x < f y. The precondition is not checked.

  9. mapMC :: Monad m => (a -> m b) -> ConduitT a b m ()

    classy-prelude-yesod ClassyPrelude.Yesod

    Apply a monadic transformation to all values in a stream. If you do not need the transformed values, and instead just want the monadic side-effects of running the action, see mapM_.

  10. mapMCE :: (Monad m, Traversable f) => (a -> m b) -> ConduitT (f a) (f b) m ()

    classy-prelude-yesod ClassyPrelude.Yesod

    Apply a monadic transformation to all elements in a chunked stream.

Page 59 of many | Previous | Next