Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. pprUserIfaceForAll :: [IfaceForAllBndr] -> SDoc

    ghc-lib-parser GHC.Iface.Type

    No documentation available.

  2. ss_forall :: ShowSub -> ShowForAllFlag

    ghc-lib-parser GHC.Iface.Type

    No documentation available.

  3. ExplicitForAll :: Extension

    ghc-lib-parser GHC.Internal.LanguageExtensions

    No documentation available.

  4. GHCForeignImportPrim :: Extension

    ghc-lib-parser GHC.Internal.LanguageExtensions

    No documentation available.

  5. TransformListComp :: Extension

    ghc-lib-parser GHC.Internal.LanguageExtensions

    No documentation available.

  6. BeforePhase :: Int -> Phases

    ghc-lib-parser GHC.Internal.TH.Syntax

    [~n]
    

  7. addForeignFile :: ForeignSrcLang -> String -> Q ()

    ghc-lib-parser GHC.Internal.TH.Syntax

    Deprecated: Use addForeignSource instead

  8. addForeignFilePath :: ForeignSrcLang -> FilePath -> Q ()

    ghc-lib-parser GHC.Internal.TH.Syntax

    Same as addForeignSource, but expects to receive a path pointing to the foreign file instead of a String of its contents. Consider using this in conjunction with addTempFile. This is a good alternative to addForeignSource when you are trying to directly link in an object file.

  9. addForeignSource :: ForeignSrcLang -> String -> Q ()

    ghc-lib-parser GHC.Internal.TH.Syntax

    Emit a foreign file which will be compiled and linked to the object for the current module. Currently only languages that can be compiled with the C compiler are supported, and the flags passed as part of -optc will be also applied to the C compiler invocation that will compile them. Note that for non-C languages (for example C++) extern C directives must be used to get symbols that we can access from Haskell. To get better errors, it is recommended to use #line pragmas when emitting C files, e.g.

    {-# LANGUAGE CPP #-}
    ...
    addForeignSource LangC $ unlines
    [ "#line " ++ show (870 + 1) ++ " " ++ show "libraries/ghc-internal/src/GHC/Internal/TH/Syntax.hs"
    , ...
    ]
    

  10. qAddForeignFilePath :: Quasi m => ForeignSrcLang -> String -> m ()

    ghc-lib-parser GHC.Internal.TH.Syntax

    See addForeignFilePath.

Page 693 of many | Previous | Next