Multiplication

class Multiplication(val lhs: Expression, val rhs: Expression) : Expression

Represents the multiplication of two values.

Constructors

Link copied to clipboard
fun Multiplication(lhs: Expression, rhs: Expression)

Properties

Link copied to clipboard
val lhs: Expression

an expression evaluating to the left-hand operand of the multiplication.

Link copied to clipboard
val rhs: Expression

an expression evaluating to the right-and operand of the multiplication.