Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. mapMG :: (ModSummary -> ModSummary) -> ModuleGraph -> ModuleGraph

    ghc-lib GHC

    Map a function f over all the ModSummaries. To preserve invariants f can't change the isBoot status.

  2. mapBlockTop :: (LiveBasicBlock instr -> LiveBasicBlock instr) -> LiveCmmDecl statics instr -> LiveCmmDecl statics instr

    ghc-lib GHC.CmmToAsm.Reg.Liveness

    map a function across all the basic blocks in this code

  3. mapBlockTopM :: Monad m => (LiveBasicBlock instr -> m (LiveBasicBlock instr)) -> LiveCmmDecl statics instr -> m (LiveCmmDecl statics instr)

    ghc-lib GHC.CmmToAsm.Reg.Liveness

    map a function across all the basic blocks in this code (monadic version)

  4. mapGenBlockTop :: (GenBasicBlock i -> GenBasicBlock i) -> GenCmmDecl d h (ListGraph i) -> GenCmmDecl d h (ListGraph i)

    ghc-lib GHC.CmmToAsm.Reg.Liveness

    No documentation available.

  5. mapGenBlockTopM :: Monad m => (GenBasicBlock i -> m (GenBasicBlock i)) -> GenCmmDecl d h (ListGraph i) -> m (GenCmmDecl d h (ListGraph i))

    ghc-lib GHC.CmmToAsm.Reg.Liveness

    map a function across all the basic blocks in this code (monadic version)

  6. mapLiveCmmDecl :: (instr -> b) -> LiveCmmDecl statics instr -> LiveCmmDecl statics b

    ghc-lib GHC.CmmToAsm.Reg.Liveness

    Map over instruction type in LiveCmmDecl

  7. mapSCCM :: Monad m => (a -> m b) -> SCC a -> m (SCC b)

    ghc-lib GHC.CmmToAsm.Reg.Liveness

    No documentation available.

  8. mapRegFormatSet :: HasDebugCallStack => (Reg -> Reg) -> UniqSet RegWithFormat -> UniqSet RegWithFormat

    ghc-lib GHC.CmmToAsm.Reg.Target

    No documentation available.

  9. mapLabels :: PureSupernode node => (Label -> Label) -> node -> node

    ghc-lib GHC.Data.Graph.Collapse

    No documentation available.

  10. mapAndUnzipM :: Applicative m => (a -> m (b, c)) -> [a] -> m ([b], [c])

    ghc-lib GHC.HsToCore.Monad

    The mapAndUnzipM function maps its first argument over a list, returning the result as a pair of lists. This function is mainly used with complicated data structures or a state monad.

Page 381 of many | Previous | Next