Comparison

GT

GT(x,y)

Returns TRUE if x is larger than y. The smallest common type of x and y is used to perform the comparison.

The function is overloaded for all integer and floatingpoint types. The returntype is BOOL.

GE

GE(x,y)

Returns TRUE if x is not smaller than y. The smallest common type of x and y is used to perform the comparison.

The function is overloaded for all integer and floatingpoint types. The returntype is BOOL.

EQ

EQ(x,y)

Returns TRUE if x and y are equal. The smallest common type of x and y is used to perform the comparison.

The function is overloaded for all integer and floatingpoint types. The returntype is BOOL.

LE

LE(x,y)

Returns TRUE if x is not larger than y. The smallest common type of x and y is used to perform the comparison.

The function is overloaded for all integer and floatingpoint types. The returntype is BOOL.

LT

LT(x,y)

Returns TRUE if x is smaller than y. The smallest common type of x and y is used to perform the comparison.

The function is overloaded for all integer and floatingpoint types. The returntype is BOOL.

NE

NE(x,y)

Returns TRUE if x and y are not equal. The smallest common type of x and y is used to perform the comparison.

The function is overloaded for all integer and floatingpoint types. The returntype is BOOL.