[#BloombergLP-bdlt-operator_not_eq-080] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlt.adoc[bdlt]::operator!= :relfileprefix: ../../ :mrdocs: Return `true` if `lhs` and `rhs` do not have the same value, and `false` otherwise. == Synopsis Declared in `<bdlt_calendarreverseiteratoradapter.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class ITERATOR> bool operator!=( xref:BloombergLP/bdlt/CalendarReverseIteratorAdapter.adoc[CalendarReverseIteratorAdapter<ITERATOR>] const& lhs, xref:BloombergLP/bdlt/CalendarReverseIteratorAdapter.adoc[CalendarReverseIteratorAdapter<ITERATOR>] const& rhs); ---- == Description Two reverse iterators do not have the same value if (1) they do not refer to the same element and (2) both do not have the past‐the‐end value for a reverse iterator over the underlying reverse iteration sequence. The behavior is undefined unless `lhs` and `rhs` refer to the same underlying sequence. == 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 reverse iterator to compare | *rhs* | right‐hand reverse iterator to compare |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#