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.
forkM :: SDoc -> IfL a -> IfL aghc 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]
forceOccEnv :: (a -> ()) -> OccEnv a -> ()ghc GHC.Types.Name.Occurrence Force an OccEnv with the provided function.
forceGlobalRdrEnv :: GlobalRdrEnvX info -> IfGlobalRdrEnvghc 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.
forceModIface :: ModIface -> IO ()ghc GHC.Unit.Module.ModIface No documentation available.
forwardGet :: BinHandle -> IO a -> IO aghc GHC.Utils.Binary Read a value stored using a forward reference
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
forwardPut_ :: BinHandle -> (b -> IO a) -> IO b -> IO ()ghc GHC.Utils.Binary No documentation available.
formatBulleted :: DecoratedSDoc -> SDocghc GHC.Utils.Error Formats the input list of structured document, where each element of the list gets a bullet.
-
ghc GHC.Utils.Outputable No documentation available.
forkTmpFsFrom :: TmpFs -> IO TmpFsghc 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.