Compare in1 and in2, output true if equal, else output false.
in1: Any.
in2: Any.
bool: Boolean. bool = (in1 == in2)
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.
in1: Number or String.
in2: Number or String.
bool: Boolean. bool = (in1 > in2)
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.
in1: Number or String.
in2: Number or String.
bool: Boolean. bool = (in1 >= in2)
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.
in1: Number or String.
in2: Number or String.
bool: Boolean. bool = (in1 < in2)
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.
in1: Number or String.
in2: Number or String.
bool: Boolean. bool = (in1 <= in2)