LetNode
class LetNode(val name: VariableNode, val indices: Arguments<IndexParameterNode>, val value: ExpressionNode, val sourceLocation: SourceLocation) : CircuitStatementNode, VariableDeclarationNode
Binding the result of an expression to a variable. Note that scalars are represented as arrays of dimension zero: val x = 5 ===> val x[] = 5
Constructors
Link copied to clipboard
fun LetNode(name: VariableNode, indices: Arguments<IndexParameterNode>, value: ExpressionNode, sourceLocation: SourceLocation)