Return true if the specified lhs string has the same (case sensitive) value as the specified rhs string, and false otherwise.
Declared in <bdlb_cstringequalto.h>
bool
operator()(
char const* lhs,
char const* rhs) const;
The behavior is undefined unless both lhs and rhs point to null-terminated strings.
true if lhs and rhs are equal, and false otherwise
| Name | Description |
|---|---|
| lhs | left-hand null-terminated string to compare |
| rhs | right-hand null-terminated string to compare |