Package ast.expr.binary.comparison

Types

Link copied to clipboard
class CompareEqual(val lhs: Expression, val rhs: Expression) : Expression

Determines whether two values are equal.

Link copied to clipboard
class CompareGreater(val lhs: Expression, val rhs: Expression) : Expression

Determines whether the left-hand operand is greater than the right-hand operand.

Link copied to clipboard
class CompareGreaterEqual(val lhs: Expression, val rhs: Expression) : Expression

Determines whether the left-hand operand is greater than or equal to the right-hand operand.

Link copied to clipboard
class CompareLess(val lhs: Expression, val rhs: Expression) : Expression

Determines whether the left-hand operand is less than the right-hand operand.

Link copied to clipboard
class CompareLessEqual(val lhs: Expression, val rhs: Expression) : Expression

Determines whether the left-hand operand is less than or equal to the right-hand operand.

Link copied to clipboard
class CompareNotEqual(val lhs: Expression, val rhs: Expression) : Expression

Determines whether two values are not equal.

Link copied to clipboard
class In(val lhs: Expression, val rhs: Expression) : Expression

Determines whether a value is an element of a list.