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.
pattern
PreInc :: JExpr -> JExprghc GHC.JS.Syntax pattern synonym for prefix increment ++x
-
ghc GHC.JS.Syntax Prefix Increment: ++x
type
PkgsLoaded = UniqDFM UnitId LoadedPkgInfoghc GHC.Linker.Types No documentation available.
Phi :: LlvmType -> [(LlvmVar, LlvmVar)] -> LlvmExpressionghc 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.
-
ghc GHC.Llvm Symbol is private to the module and should not appear in the symbol table
-
Pretty print LLVM IR Code.
Phi :: LlvmType -> [(LlvmVar, LlvmVar)] -> LlvmExpressionghc 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.
-
ghc GHC.Llvm.Types Symbol is private to the module and should not appear in the symbol table
-
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
-
ghc GHC.Parser.Annotation Detail of the "brackets" used in an AnnParen exact print annotation.