CmpExp

A comparison operator, < <= > >=

op is one of: EXP.lessThan, EXP.lessOrEqual, EXP.greaterThan, EXP.greaterOrEqual

https://dlang.org/spec/expression.html#relation_expressions

extern (C++) final
class CmpExp : BinExp {}

Inherited Members

From BinExp

incompatibleTypes
Expression incompatibleTypes()

The types for a binary expression are incompatible. Print error message.

setNoderefOperands
void setNoderefOperands()

Mark the operands as will never be dereferenced, which is useful info for @safe checks. Do before semantic() on operands rewrites them.

Meta