ot::Heap::String::operator() const method
Overloads operator `==` to evaluate whether or not the `String` is equal 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 null.
Return value
TRUE If the two strings are equal. FALSE If the two strings are not equal.