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. mapModalPolarity :: LensModalPolarity a => (PolarityModality -> PolarityModality) -> a -> a

    Agda Agda.Syntax.Common

    No documentation available.

  2. mapModality :: LensModality a => (Modality -> Modality) -> a -> a

    Agda Agda.Syntax.Common

    No documentation available.

  3. mapModalityArgInfo :: LensArgInfo a => LensMap a Modality

    Agda Agda.Syntax.Common

    No documentation available.

  4. mapMaybeAndRest :: (a -> Maybe b) -> [a] -> ([b], Suffix a)

    Agda Agda.Utils.List

    Like mapMaybe, but additionally return the last partition of the list where the function always returns Nothing. O(n).

  5. mapMaybe :: (a -> Maybe b) -> List1 a -> [b]

    Agda Agda.Utils.List1

    Like mapMaybe.

  6. mapMListT :: Monad m => (a -> m b) -> ListT m a -> ListT m b

    Agda Agda.Utils.ListT

    Extending a monadic function to ListT.

  7. mapMListT_alt :: Monad m => (a -> m b) -> ListT m a -> ListT m b

    Agda Agda.Utils.ListT

    Alternative implementation using foldListT.

  8. mapM' :: (Foldable t, Applicative m, Monoid b) => (a -> m b) -> t a -> m b

    Agda Agda.Utils.Monad

    Generalized version of traverse_ :: Applicative m => (a -> m ()) -> [a] -> m () Executes effects and collects results in left-to-right order. Works best with left-associative monoids. Note that there is an alternative

    mapM' f t = foldr mappend mempty $ mapM f t
    
    that collects results in right-to-left order (effects still left-to-right). It might be preferable for right associative monoids.

  9. mapMM :: (Traversable t, Monad m) => (a -> m b) -> m (t a) -> m (t b)

    Agda Agda.Utils.Monad

    No documentation available.

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

    Agda Agda.Utils.Monad

    No documentation available.

Page 52 of many | Previous | Next