[#BloombergLP-bdlt-operator_not_eq-0b] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlt.adoc[bdlt]::operator!= :relfileprefix: ../../ :mrdocs: Return `true` if the specified `lhs` and `rhs` iterators do not have the same value. == Synopsis Declared in `<bdlt_dayofweekset.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool operator!=( xref:BloombergLP/bdlt/DayOfWeekSet_Iter.adoc[DayOfWeekSet_Iter] const& lhs, xref:BloombergLP/bdlt/DayOfWeekSet_Iter.adoc[DayOfWeekSet_Iter] const& rhs); ---- == Description Return `true` if the specified `lhs` and `rhs` iterators do not have the same value, and `false` otherwise. Two iterators do not have the same value if they do not refer to data at the same index position. The behavior is undefined unless `lhs` and `rhs` both reference into the same set of data. == Return Value `true` if `lhs` and `rhs` do not have the same value, and `false` otherwise == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | left‐hand iterator | *rhs* | right‐hand iterator |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#