cmpop

The comparison operators.

声明

语法

cmpop = Eq | NotEq | Lt | LtE | Gt | GtE

Values

Value

Meaning

Eq

equal.

NotEq

not equal.

Lt

less than.

LtE

less than or equal.

Gt

greater than.

GtE

greater than or equal.

返回值

None. An enumeration value is not evaluated.

描述

Shared by every comparison node. Only Eq and NotEq are meaningful for complex values, logicals and C pointers, which have no order.

也可以看看

IntegerCompare, RealCompare, StringCompare, binop