Return whether lhs and rhs have different values.
Declared in <bdlcc_skiplist.h>
template<
class KEY,
class DATA>
bool
operator!=(
SkipList<KEY, DATA> const& lhs,
SkipList<KEY, DATA> const& rhs);
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.
true if lhs and rhs differ, and false otherwise
| Name | Description |
|---|---|
| lhs | object providing the value on the left-hand side |
| rhs | object providing the value on the right-hand side |