Modulo

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

Represents the modulo operation of two values.

The result of this operation is the remainder of the Euclidean division of the dividend by the modulus.

Constructors

Link copied to clipboard
fun Modulo(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 modulus.