HUCTLp / com.github.sybila.huctl / Expression / Mul

Mul

data class Mul : Expression, Binary<Mul, Expression>

Multiplication: A * B

Constructors

<init> Mul(left: Expression, right: Expression)

Multiplication: A * B

Properties

left val left: Expression

The child of this element which is the root of the left subtree.

right val right: Expression

The child of this element which is the root of the right subtree.

Inherited Properties

node open val node: Expression

Expression is also the node in the tree, so node == this

Functions

toString fun toString(): String

Return string which uniquely represents this expression and can be parsed to create an equivalent object.