ot::Utils::CmdLineParser::Arg::operator() const method
Overload the operator `==` to evaluate whether the argument is equal to a given C string. If the argument is empty (`IsEmpty()` is `true`) then comparing it using operator `==` with any C string will return false.
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 empty and is equal to @p aString. FALSE If the argument is not equal to @p aString, or if the argument is empty.