[#BloombergLP-bdlc-operator_eq-0a] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::operator== :relfileprefix: ../../ :mrdocs: Return `true` if `lhs` and `rhs` refer to the same position. == Synopsis Declared in `<bdlc_packedintarray.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> bool operator==( xref:BloombergLP/bdlc/PackedIntArrayConstIterator.adoc[PackedIntArrayConstIterator<TYPE>] const& lhs, xref:BloombergLP/bdlc/PackedIntArrayConstIterator.adoc[PackedIntArrayConstIterator<TYPE>] const& rhs); ---- == Description Return `true` if the specified `lhs` and `rhs` iterators have the same value, and `false` otherwise. Two `PackedIntArrayConstIterator` iterators have the same value if they refer to the same array, and have the same index. == Specializations [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bdlc/operator_eq-06.adoc[`operator==<>`] | Return whether the iterators refer to the same position (see free `operator==`). |=== == Return Value `true` if the iterators refer to the same position, and `false` otherwise == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | left‐hand‐side iterator | *rhs* | right‐hand‐side iterator |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#