Hoogle Search
Within LTS Haskell 24.27 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapModuleEnv :: (a -> b) -> ModuleEnv a -> ModuleEnv bghc-lib-parser GHC.Unit.Module.Env No documentation available.
mapMG :: (ModSummary -> ModSummary) -> ModuleGraph -> ModuleGraphghc-lib-parser GHC.Unit.Module.Graph Map a function f over all the ModSummaries. To preserve invariants f can't change the isBoot status.
mapGenUnit :: IsUnitId v => (u -> v) -> GenUnit u -> GenUnit vghc-lib-parser GHC.Unit.Types Map over the unit type of a GenUnit
mapInstantiations :: IsUnitId v => (u -> v) -> GenInstantiations u -> GenInstantiations vghc-lib-parser GHC.Unit.Types Map over the unit identifier of unit instantiations.
mapException :: (Exception e1, Exception e2) => (e1 -> e2) -> a -> aghc-lib-parser GHC.Utils.Exception This function maps one exception into another as proposed in the paper "A semantics for imprecise exceptions".
mapUnionFV :: (a -> FV) -> [a] -> FVghc-lib-parser GHC.Utils.FV Map a free variable computation over a list and union the results.
mapAndUnzip :: (a -> (b, c)) -> [a] -> ([b], [c])ghc-lib-parser GHC.Utils.Misc No documentation available.
mapAndUnzip3 :: (a -> (b, c, d)) -> [a] -> ([b], [c], [d])ghc-lib-parser GHC.Utils.Misc No documentation available.
mapAndUnzip4 :: (a -> (b, c, d, e)) -> [a] -> ([b], [c], [d], [e])ghc-lib-parser GHC.Utils.Misc No documentation available.
mapFst :: Functor f => (a -> c) -> f (a, b) -> f (c, b)ghc-lib-parser GHC.Utils.Misc No documentation available.