Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. pattern PreInc :: JExpr -> JExpr

    ghc GHC.JS.Syntax

    pattern synonym for prefix increment ++x

  2. PreIncOp :: UOp

    ghc GHC.JS.Syntax

    Prefix Increment: ++x

  3. type PkgsLoaded = UniqDFM UnitId LoadedPkgInfo

    ghc GHC.Linker.Types

    No documentation available.

  4. Phi :: LlvmType -> [(LlvmVar, LlvmVar)] -> LlvmExpression

    ghc GHC.Llvm

    Merge variables from different basic blocks which are predecessors of this basic block in a new variable of type tp. * tp: type of the merged variable, must match the types of the predecessor variables. * predecessors: A list of variables and the basic block that they originate from.

  5. Private :: LlvmLinkageType

    ghc GHC.Llvm

    Symbol is private to the module and should not appear in the symbol table

  6. module GHC.Llvm.Ppr

    Pretty print LLVM IR Code.

  7. Phi :: LlvmType -> [(LlvmVar, LlvmVar)] -> LlvmExpression

    ghc GHC.Llvm.Syntax

    Merge variables from different basic blocks which are predecessors of this basic block in a new variable of type tp. * tp: type of the merged variable, must match the types of the predecessor variables. * predecessors: A list of variables and the basic block that they originate from.

  8. Private :: LlvmLinkageType

    ghc GHC.Llvm.Types

    Symbol is private to the module and should not appear in the symbol table

  9. module GHC.Parser

    This module provides the generated Happy parser for Haskell. It exports a number of parsers which may be used in any library that uses the GHC API. A common usage pattern is to initialize the parser state with a given string and then parse that string:

    runParser :: ParserOpts -> String -> P a -> ParseResult a
    runParser opts str parser = unP parser parseState
    where
    filename = "<interactive>"
    location = mkRealSrcLoc (mkFastString filename) 1 1
    buffer = stringToStringBuffer str
    parseState = initParserState opts buffer location
    

  10. data ParenType

    ghc GHC.Parser.Annotation

    Detail of the "brackets" used in an AnnParen exact print annotation.

Page 135 of many | Previous | Next