[#BloombergLP-bdlcc-operator_not_eq-0e] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlcc.adoc[bdlcc]::operator!= :relfileprefix: ../../ :mrdocs: Return whether `lhs` and `rhs` have different values. == Synopsis Declared in `<bdlcc_skiplist.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class KEY, class DATA> bool operator!=( xref:BloombergLP/bdlcc/SkipList-0a.adoc[SkipList<KEY, DATA>] const& lhs, xref:BloombergLP/bdlcc/SkipList-0a.adoc[SkipList<KEY, DATA>] const& rhs); ---- == Description Two lists A and B have different values if they have a different number of elements, or if there exists an i in the range [0, numberOfElements) such] that the i'th pair from the front of A differs in key or data values from the i'th pair from the front of B. == Return Value `true` if `lhs` and `rhs` differ, and `false` otherwise == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | object providing the value on the left‐hand side | *rhs* | object providing the value on the right‐hand side |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#