Return whether the specified null-terminated strings compare equal.
Declared in <bslstp_exfunctional.h>
bool
operator()(
char const* a,
char const* b) const;
Return true if the specified strings a and b have the same value, and return false otherwise. Two strings have the same value if the result of std::strcmp returns 0.
true if the strings compare equal, and false otherwise
| Name | Description |
|---|---|
| a | first null-terminated string to compare |
| b | second null-terminated string to compare |