Interface IForStatement
For statement
Namespace: Microsoft.ML.Probabilistic.Compiler.CodeModel
Assembly: Microsoft.ML.Probabilistic.Compiler.dll
Syntax
public interface IForStatement : IStatement
Properties
Body
The body of the if statement
Declaration
IBlockStatement Body { get; set; }
Property Value
| Type | Description |
|---|---|
| IBlockStatement |
Condition
The condition of the for statement
Declaration
IExpression Condition { get; set; }
Property Value
| Type | Description |
|---|---|
| IExpression |
Increment
The incrementer of the for statement
Declaration
IStatement Increment { get; set; }
Property Value
| Type | Description |
|---|---|
| IStatement |
Initializer
The initializer of the for statement
Declaration
IStatement Initializer { get; set; }
Property Value
| Type | Description |
|---|---|
| IStatement |