[#BloombergLP-bslstl-operator_eq-08] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslstl.adoc[bslstl]::operator== :relfileprefix: ../../ :mrdocs: Return whether two bidirectional iterators refer to the same position. == Synopsis Declared in `<bslstl_bidirectionaliterator.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class T1, class T2, class ITER_IMP, class TAG_TYPE> bool operator==( xref:BloombergLP/bslstl/BidirectionalIterator.adoc[BidirectionalIterator<T1, ITER_IMP, TAG_TYPE>] const& lhs, xref:BloombergLP/bslstl/BidirectionalIterator.adoc[BidirectionalIterator<T2, ITER_IMP, TAG_TYPE>] const& rhs); ---- == Description Return `true` if the specified `lhs` iterator has the same value as the specified `rhs` iterator, and `false` otherwise. Two iterators have the same value if they refer to the same element, or both have the past‐the‐ end value for the underlying sequence. The behavior is undefined unless both iterators refer to the same underlying sequence. == Return Value `true` if the iterators have the same value, and `false` otherwise == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | first iterator to compare | *rhs* | second iterator to compare |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#