ot::Heap::String::operator!=() const method
Overloads operator `!=` to evaluate whether or not the `String` is unequal to a given C string.
Syntax
bool operator!=(const char *aCString) const; Arguments
aCString
A C string to compare with. Can be `nullptr` which then checks if `String` is not null.
Return value
TRUE If the two strings are not equal. FALSE If the two strings are equal.