[#BloombergLP-bdlb-CStringEqualTo-operator_call] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlb.adoc[bdlb]::xref:BloombergLP/bdlb/CStringEqualTo.adoc[CStringEqualTo]::operator() :relfileprefix: ../../../ :mrdocs: Return `true` if the specified `lhs` string has the same (case sensitive) value as the specified `rhs` string, and `false` otherwise. == Synopsis Declared in `<bdlb_cstringequalto.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool operator()( char const* lhs, char const* rhs) const; ---- == Description The behavior is undefined unless both `lhs` and `rhs` point to null‐terminated strings. == Return Value `true` if `lhs` and `rhs` are equal, and `false` otherwise == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | left‐hand null‐terminated string to compare | *rhs* | right‐hand null‐terminated string to compare |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#