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. forkM :: SDoc -> IfL a -> IfL a

    ghc GHC.Tc.Utils.Monad

    Run thing_inside in an interleaved thread. It shares everything with the parent thread, so this is DANGEROUS. It throws an error if the computation fails It's used for lazily type-checking interface signatures, which is pretty benign. See Note [Masking exceptions in forkM]

  2. forceOccEnv :: (a -> ()) -> OccEnv a -> ()

    ghc GHC.Types.Name.Occurrence

    Force an OccEnv with the provided function.

  3. forceGlobalRdrEnv :: GlobalRdrEnvX info -> IfGlobalRdrEnv

    ghc GHC.Types.Name.Reader

    Drop all GREInfo fields in a GlobalRdrEnv in order to avoid space leaks. See Note [Forcing GREInfo] in GHC.Types.GREInfo.

  4. forceModIface :: ModIface -> IO ()

    ghc GHC.Unit.Module.ModIface

    No documentation available.

  5. forwardGet :: BinHandle -> IO a -> IO a

    ghc GHC.Utils.Binary

    Read a value stored using a forward reference

  6. forwardPut :: BinHandle -> (b -> IO a) -> IO b -> IO (a, b)

    ghc GHC.Utils.Binary

    "forwardPut put_A put_B" outputs A after B but allows A to be read before B by using a forward reference

  7. forwardPut_ :: BinHandle -> (b -> IO a) -> IO b -> IO ()

    ghc GHC.Utils.Binary

    No documentation available.

  8. formatBulleted :: DecoratedSDoc -> SDoc

    ghc GHC.Utils.Error

    Formats the input list of structured document, where each element of the list gets a bullet.

  9. forAllLit :: SDoc

    ghc GHC.Utils.Outputable

    No documentation available.

  10. forkTmpFsFrom :: TmpFs -> IO TmpFs

    ghc GHC.Utils.TmpFs

    Initialise an empty TmpFs sharing unique numbers and per-process temporary directories with the given TmpFs It's not safe to use the subdirs created by the original TmpFs with the forked one. Use newTempSubDir to create new subdirs instead.

Page 27 of many | Previous | Next