Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

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

  1. mapAndRecoverM :: (a -> TcRn b) -> [a] -> TcRn [b]

    ghc GHC.Tc.Utils.Monad

    Drop elements of the input that fail, so the result list can be shorter than the argument list

  2. mapAndReportM :: (a -> TcRn b) -> [a] -> TcRn [b]

    ghc GHC.Tc.Utils.Monad

    Apply the function to all elements on the input list If all succeed, return the list of results Otherwise fail, propagating all errors

  3. mapCheck :: (x -> TcM (PuResult a Reduction)) -> [x] -> TcM (PuResult a Reductions)

    ghc GHC.Tc.Utils.Unify

    No documentation available.

  4. mapDecoratedSDoc :: (SDoc -> SDoc) -> DecoratedSDoc -> DecoratedSDoc

    ghc GHC.Types.Error

    Apply a transformation function to all elements of a DecoratedSDoc.

  5. mapLitValue :: Platform -> (Integer -> Integer) -> Literal -> Literal

    ghc GHC.Types.Literal

    Apply a function to the Integer contained in the Literal, for when that makes sense, e.g. for Char and numbers. For fixed-size integral literals, the result will be wrapped in accordance with the semantics of the target type. See Note [WordInt underflowoverflow]

  6. mapDNameEnv :: (a -> b) -> DNameEnv a -> DNameEnv b

    ghc GHC.Types.Name.Env

    No documentation available.

  7. mapMaybeNameEnv :: (a -> Maybe b) -> NameEnv a -> NameEnv b

    ghc GHC.Types.Name.Env

    No documentation available.

  8. mapNameEnv :: (elt1 -> elt2) -> NameEnv elt1 -> NameEnv elt2

    ghc GHC.Types.Name.Env

    No documentation available.

  9. mapMaybeOccEnv :: (a -> Maybe b) -> OccEnv a -> OccEnv b

    ghc GHC.Types.Name.Occurrence

    mapMaybe for b OccEnv.

  10. mapOccEnv :: (a -> b) -> OccEnv a -> OccEnv b

    ghc GHC.Types.Name.Occurrence

    Map over an OccEnv (Functor instance).

Page 105 of many | Previous | Next