Package ast. expr. binary. arithmetic
Types
Link copied to clipboard
Represents the addition of two values.
Link copied to clipboard
Represents the division of two values.
Link copied to clipboard
class Exponentiation(val lhs: Expression, val rhs: Expression) : Expression
Content copied to clipboard
Represents the raising of a value to a power.
Link copied to clipboard
Represents the floor value of the result of the division of two values.
Link copied to clipboard
Represents the modulo operation of two values.
Link copied to clipboard
class Multiplication(val lhs: Expression, val rhs: Expression) : Expression
Content copied to clipboard
Represents the multiplication of two values.
Link copied to clipboard
Represents the subtraction of one value from another.