FloorDiv

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

Represents the floor value of the result of the division of two values.

The dividend should be divided by the divisor, then the quotient returned.

Constructors

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

Properties

Link copied to clipboard
val lhs: Expression

an expression evaluating to the dividend.

Link copied to clipboard
val rhs: Expression

an expression evaluating to the divisor.