!=
Symbol of Operator.
(const Operator lhs != const Operator rhs) -> bool
Compares two Operator objects for inequality. Returns true if the operators differ in type or internal structure.
Parameters
- lhs: Left-hand side value.
- rhs: The right-hand-side Operator object.
Returns
true if the objects are not equal, false otherwise.
Example
X(0) != Y(0) // Returns true
X(0) != X(0) // Returns false