ot::Unequatable::operator!=() const method
Overloads operator `!=` to evaluate whether or not two instances of `Type` are equal. This is implemented in terms of an existing `==` overload provided by `Type` class itself.
Syntax
bool operator!=(const Type &aOther) const; Arguments
aOther
The other `Type` instance to compare with.
Return value
TRUE If the two `Type` instances are not equal. FALSE If the two `Type` instances are equal.