[#BloombergLP-bsltf-operator_eq-0844] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bsltf.adoc[bsltf]::operator== :relfileprefix: ../../ :mrdocs: Return whether two `CopyMoveTracker` objects have the same value. == Synopsis Declared in `<bsltf_copymovetracker.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr bool operator==( xref:BloombergLP/bsltf/CopyMoveTracker.adoc[CopyMoveTracker] const& lhs, OTHER const& rhs) requires bsl::is_same<CopyMoveTracker, OTHER>::value; ---- == Description Return `true`; the copy/move state is _not_ a salient attribute, so all `CopyMoveTracker` objects compare equal. Note that this operator is called implicitly if a client class defines a defaulted comparison operator (C++20), but will not be selected by overload resolution for a derived class having no comparison operator. == Return Value `true` == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | left‐hand operand | *rhs* | right‐hand operand |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#