[#BloombergLP-bdlc-operator_not_eq-09] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::operator!= :relfileprefix: ../../ :mrdocs: Return `true` if `lhs` and `rhs` do not have the same value, and `false` otherwise. == Synopsis Declared in `<bdlc_indexclerk.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool operator!=( xref:BloombergLP/bdlc/IndexClerkIter.adoc[IndexClerkIter] const& lhs, xref:BloombergLP/bdlc/IndexClerkIter.adoc[IndexClerkIter] const& rhs); ---- == Description Two iterators do not have the same value if they do not refer to the same element of the same container or if one has the end iterator value of a container and the other refers to an element (not the end) of the same container. The behavior is undefined unless `lhs` and `rhs` refer to the same container and are non‐singular (i.e., are not default‐constructed or copies of singular iterators). == Return Value `true` if not equal, 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]#