Logic comparison

eq

Description

Compare in1 and in2, output true if equal, else output false.

Inport

in1: Any.

in2: Any.

Outport

bool: Boolean. bool = (in1 == in2)

gt

Description

Compare in1 and in2, output true if in1 > in2, else output false.

Note that: for String type input, the comparison is based on standard lexicographical ordering.

Inport

in1: Number or String.

in2: Number or String.

Outport

bool: Boolean. bool = (in1 > in2)

gte

Description

Compare in1 and in2, output true if in1 >= in2, else output false.

Note that: for String type input, the comparison is based on standard lexicographical ordering.

Inport

in1: Number or String.

in2: Number or String.

Outport

bool: Boolean. bool = (in1 >= in2)

lt

Description

Compare in1 and in2, output true if in1 < in2, else output false.

Note that: for String type input, the comparison is based on standard lexicographical ordering.

Inport

in1: Number or String.

in2: Number or String.

Outport

bool: Boolean. bool = (in1 < in2)

lte

Description

Compare in1 and in2, output true if in1 <= in2, else output false.

Note that: for String type input, the comparison is based on standard lexicographical ordering.

Inport

in1: Number or String.

in2: Number or String.

Outport

bool: Boolean. bool = (in1 <= in2)