Hoogle Search

Within LTS Haskell 24.57 (ghc-9.10.3)

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

  1. tStmt :: MonadTrav m => [StmtCtx] -> CStat -> m Type

    language-c Language.C.Analysis.AstAnalysis

    Typecheck a statement, given a statement context. The type of a statement is usually void, but expression statements and blocks can sometimes have other types.

  2. type CAsmStmt = CAssemblyStatement NodeInfo

    language-c Language.C.Syntax.AST

    GNU Assembler statement

    CAssemblyStatement type-qual? asm-expr out-ops in-ops clobbers _
    
    is an inline assembler statement. The only type-qualifier (if any) allowed is volatile. asm-expr is the actual assembler epxression (a string), out-ops and in-ops are the input and output operands of the statement. clobbers is a list of registers which are clobbered when executing the assembler statement

  3. CAsmStmt :: Maybe (CTypeQualifier a) -> CStringLiteral a -> [CAssemblyOperand a] -> [CAssemblyOperand a] -> [CStringLiteral a] -> a -> CAssemblyStatement a

    language-c Language.C.Syntax.AST

    No documentation available.

  4. CBlockStmt :: CStatement a -> CCompoundBlockItem a

    language-c Language.C.Syntax.AST

    A statement

  5. getSubStmts :: CStat -> [CStat]

    language-c Language.C.Syntax.Utils

    No documentation available.

  6. mapBlockItemStmts :: (CStat -> Bool) -> (CStat -> CStat) -> CBlockItem -> CBlockItem

    language-c Language.C.Syntax.Utils

    No documentation available.

  7. mapSubStmts :: (CStat -> Bool) -> (CStat -> CStat) -> CStat -> CStat

    language-c Language.C.Syntax.Utils

    No documentation available.

  8. casestmt :: [Case] -> Stmt

    language-c99-simple Language.C99.Simple.Translate

    No documentation available.

  9. compoundstmt :: [Decln] -> [Stmt] -> Stmt

    language-c99-simple Language.C99.Simple.Translate

    No documentation available.

  10. exprstmt :: Expr -> Stmt

    language-c99-simple Language.C99.Simple.Translate

    No documentation available.

Page 359 of many | Previous | Next