Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. 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

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

    language-c Language.C.Syntax.AST

    No documentation available.

  3. CBlockStmt :: CStatement a -> CCompoundBlockItem a

    language-c Language.C.Syntax.AST

    A statement

  4. getSubStmts :: CStat -> [CStat]

    language-c Language.C.Syntax.Utils

    No documentation available.

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

    language-c Language.C.Syntax.Utils

    No documentation available.

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

    language-c Language.C.Syntax.Utils

    No documentation available.

  7. casestmt :: [Case] -> Stmt

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

    No documentation available.

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

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

    No documentation available.

  9. exprstmt :: Expr -> Stmt

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

    No documentation available.

  10. forstmt :: Maybe Expr -> Maybe Expr -> Maybe Expr -> [Stmt] -> Stmt

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

    No documentation available.

Page 359 of many | Previous | Next