• About
  • Snapshots
  • LTS
  • Nightly
  • FAQ
  • Blog

Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. mapMM_ :: (Foldable t, Monad m) => (a -> m ()) -> m (t a) -> m ()

    Agda Agda.Utils.Monad

    No documentation available.

  2. mapMaybeM :: Monad m => (a -> m (Maybe b)) -> [a] -> m [b]

    Agda Agda.Utils.Monad

    A monadic version of mapMaybe :: (a -> Maybe b) -> [a] -> [b].

  3. mapMaybeMM :: Monad m => (a -> m (Maybe b)) -> m [a] -> m [b]

    Agda Agda.Utils.Monad

    A version of mapMaybeM with a computation for the input list.

  4. mapEither3M :: Applicative m => (a -> m (Either3 b c d)) -> [a] -> m ([b], [c], [d])

    Agda Agda.Utils.Three

    No documentation available.

  5. mapSubTries :: Ord k => (Trie k u -> Maybe v) -> Trie k u -> Trie k v

    Agda Agda.Utils.Trie

    Create new values based on the entire subtrie. Almost, but not quite comonad extend.

  6. mapFst :: (a -> c) -> (a, b) -> (c, b)

    Agda Agda.Utils.Tuple

    mapFst f = f -*- id
    

  7. mapFstM :: Functor m => (a -> m c) -> (a, b) -> m (c, b)

    Agda Agda.Utils.Tuple

    Monadic mapFst.

  8. mapPairM :: Applicative m => (a -> m c) -> (b -> m d) -> (a, b) -> m (c, d)

    Agda Agda.Utils.Tuple

    Monadic version of -*-.

  9. mapSnd :: (b -> d) -> (a, b) -> (a, d)

    Agda Agda.Utils.Tuple

    mapSnd g = id -*- g
    

  10. mapSndM :: Functor m => (b -> m d) -> (a, b) -> m (a, d)

    Agda Agda.Utils.Tuple

    Monadic mapSnd.

Page 273 of many | Previous | Next

Stackage is a service provided by the Haskell Foundation │ Originally developed by FP Complete