[#BloombergLP-bdlcc-operator_not_eq-02] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlcc.adoc[bdlcc]::operator!= :relfileprefix: ../../ :mrdocs: Inequality operators == Synopses Declared in `<bdlcc_skiplist.h>` Return `true` if the specified lists have different values. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bdlcc/operator_not_eq-03.adoc[operator!=]( xref:BloombergLP/bdlcc/SkipList-0a.adoc[SkipList<KEY2, DATA2>] const&, xref:BloombergLP/bdlcc/SkipList-0a.adoc[SkipList<KEY2, DATA2>] const&); ---- [.small]#xref:BloombergLP/bdlcc/operator_not_eq-03.adoc[_» more..._]# Return `true` if the specified `lhs` list list has a different value from the specified `rhs` list, and `false` otherwise. Two lists A and B have different values if they have a different 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 i'th pair from the front of B. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class KEY, class DATA> bool xref:BloombergLP/bdlcc/operator_not_eq-0e.adoc[operator!=]( xref:BloombergLP/bdlcc/SkipList-0a.adoc[SkipList<KEY, DATA>] const& lhs, xref:BloombergLP/bdlcc/SkipList-0a.adoc[SkipList<KEY, DATA>] const& rhs); ---- [.small]#xref:BloombergLP/bdlcc/operator_not_eq-0e.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#