Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. mapPositions :: (Position -> Position) -> Fix -> Fix

    ShellCheck ShellCheck.Fixer

    No documentation available.

  2. mapFilterE :: (a -> Maybe b) -> Event a -> Event b

    Yampa FRP.Yampa

    Combined event mapping and filtering. Note: since Event is a Functor, see fmap for a simpler version of this function with no filtering.

  3. mapMerge :: (a -> c) -> (b -> c) -> (a -> b -> c) -> Event a -> Event b -> Event c

    Yampa FRP.Yampa

    A generic event merge-map utility that maps event occurrences, merging the results. The first three arguments are mapping functions, the third of which will only be used when both events are present. Therefore, mergeBy = mapMerge id id. Applicative-based definition: mapMerge lf rf lrf le re = (f $ le * re) | (lf $ le) | (rf $ re)

  4. mapFilterE :: (a -> Maybe b) -> Event a -> Event b

    Yampa FRP.Yampa.Event

    Combined event mapping and filtering. Note: since Event is a Functor, see fmap for a simpler version of this function with no filtering.

  5. mapMerge :: (a -> c) -> (b -> c) -> (a -> b -> c) -> Event a -> Event b -> Event c

    Yampa FRP.Yampa.Event

    A generic event merge-map utility that maps event occurrences, merging the results. The first three arguments are mapping functions, the third of which will only be used when both events are present. Therefore, mergeBy = mapMerge id id. Applicative-based definition: mapMerge lf rf lrf le re = (f $ le * re) | (lf $ le) | (rf $ re)

  6. mapError :: forall (m :: Type -> Type) err err' a . Functor m => (err -> err') -> ParseT err m a -> ParseT err' m a

    aeson-better-errors Data.Aeson.BetterErrors

    Transform the error of a parser according to the given function.

  7. mapError :: forall (m :: Type -> Type) err err' a . Functor m => (err -> err') -> ParseT err m a -> ParseT err' m a

    aeson-better-errors Data.Aeson.BetterErrors.Internal

    Transform the error of a parser according to the given function.

  8. mapParseT :: forall err (m :: Type -> Type) a err' (m' :: Type -> Type) a' . (ReaderT ParseReader (ExceptT (ParseError err) m) a -> ReaderT ParseReader (ExceptT (ParseError err') m') a') -> ParseT err m a -> ParseT err' m' a'

    aeson-better-errors Data.Aeson.BetterErrors.Internal

    No documentation available.

  9. mapLazy :: Decoder a -> Decoder (Map Text a)

    aeson-combinators Data.Aeson.Combinators.Decode

    Decode JSON object to Map with Text key using provided Decoder.

  10. mapStrict :: Decoder a -> Decoder (Map Text a)

    aeson-combinators Data.Aeson.Combinators.Decode

    Decode JSON object to Map with Text key using provided Decoder.

Page 317 of many | Previous | Next