ot::Utils::CmdLineParser::Arg::operator!=() const method
Overload the operator `!=` to evaluate whether the argument is unequal to a given C string.
Syntax
bool operator!=(const char *aString) const; Arguments
aString
The C string to compare with (MUST not be `nullptr`).
Return value
TRUE If the argument is not equal to @p aString, or if the argument is empty. FALSE If the argument is not empty and equal to @p aString.