Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. mapAttrNames :: [(AttrName, AttrName)] -> AttrMap -> AttrMap

    brick Brick.AttrMap

    Map several attributes to return the value associated with an alternate name. Applies mapAttrName across a list of mappings.

  2. mapMaybe :: (a -> Maybe b) -> IMap a -> IMap b

    brick Data.IMap

    No documentation available.

  3. mapM :: (Traversable t, Monad m) => (a -> m b) -> t a -> m (t b)

    classy-prelude ClassyPrelude

    Map each element of a structure to a monadic action, evaluate these actions from left to right, and collect the results. For a version that ignores the results see mapM_.

    Examples

    mapM is literally a traverse with a type signature restricted to Monad. Its implementation may be more efficient due to additional power of Monad.

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

    classy-prelude ClassyPrelude

    The mapMaybe function is a version of map which can throw out elements. In particular, the functional argument returns something of type Maybe b. If this is Nothing, no element is added on to the result list. If it is Just b, then b is included in the result list.

    Examples

    Using mapMaybe f x is a shortcut for catMaybes $ map f x in most cases:
    >>> import GHC.Internal.Text.Read ( readMaybe )
    
    >>> let readMaybeInt = readMaybe :: String -> Maybe Int
    
    >>> mapMaybe readMaybeInt ["1", "Foo", "3"]
    [1,3]
    
    >>> catMaybes $ map readMaybeInt ["1", "Foo", "3"]
    [1,3]
    
    If we map the Just constructor, the entire list should be returned:
    >>> mapMaybe Just [1,2,3]
    [1,2,3]
    

  5. mappend :: Monoid a => a -> a -> a

    classy-prelude ClassyPrelude

    An associative operation NOTE: This method is redundant and has the default implementation mappend = (<>) since base-4.11.0.0. Should it be implemented manually, since mappend is a synonym for (<>), it is expected that the two functions are defined the same way. In a future GHC release mappend will be removed from Monoid.

  6. mapAssocs :: Map key value -> Unfoldl (key, value)

    deferred-folds DeferredFolds.Unfoldl

    Associations of a map

  7. mapFoldInput :: (forall x . () => Fold b x -> Fold a x) -> Unfoldl a -> Unfoldl b

    deferred-folds DeferredFolds.Unfoldl

    Lift a fold input mapping function into a mapping of unfolds

  8. mapFoldMInput :: forall (m :: Type -> Type) b a . Monad m => (forall x . () => FoldM m b x -> FoldM m a x) -> UnfoldlM m a -> UnfoldlM m b

    deferred-folds DeferredFolds.UnfoldlM

    Lift a fold input mapping function into a mapping of unfolds

  9. mapM_ :: Monad m => (input -> m ()) -> UnfoldlM m input -> m ()

    deferred-folds DeferredFolds.UnfoldlM

    A more efficient implementation of mapM_

  10. mapAssocs :: Map key value -> Unfoldr (key, value)

    deferred-folds DeferredFolds.Unfoldr

    Associations of a map

Page 169 of many | Previous | Next