|
Release 4.0 |
 |
Operators - ==
Operator : | == - check for equality |
Unary / binary: | Binary |
Prefix / infix: | Infix |
Input data type |
Output data type |
|
bool/int/real/complex/quaternion |
bool |
Notes:
This operator compares the two operands. If they are equal, it returns true, otherwise false.
Examples:
3==4 ==> false
x==y
false==false ==> true
|