[#BloombergLP-bdlc-operator_not_eq-0e] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::operator!= :relfileprefix: ../../ :mrdocs: Inequality operators == Synopses Declared in `<bdlc_bitarray.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<> bool xref:BloombergLP/bdlc/operator_not_eq-0a.adoc[operator!=<>]( xref:BloombergLP/bdlc/PackedIntArrayConstIterator.adoc[PackedIntArrayConstIterator] const&, xref:BloombergLP/bdlc/PackedIntArrayConstIterator.adoc[PackedIntArrayConstIterator] const&); ---- [.small]#xref:BloombergLP/bdlc/operator_not_eq-0a.adoc[_» more..._]# Return `true` if the specified `lhs` and `rhs` iterators do not have the same value and `false` otherwise. Two `PackedIntArrayConstIterator` iterators do not have the same value if they do not refer to the same array, or do not have the same index. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> bool xref:BloombergLP/bdlc/operator_not_eq-02.adoc[operator!=]( xref:BloombergLP/bdlc/PackedIntArrayConstIterator.adoc[PackedIntArrayConstIterator<TYPE>] const& lhs, xref:BloombergLP/bdlc/PackedIntArrayConstIterator.adoc[PackedIntArrayConstIterator<TYPE>] const& rhs); ---- [.small]#xref:BloombergLP/bdlc/operator_not_eq-02.adoc[_» more..._]# Return `true` if the specified `lhs` and `rhs` arrays do not have the same value, and `false` otherwise. Two `PackedIntArray` arrays do not have the same value if they do not have the same length, or if any corresponding elements (those at the same indices) do not have the same value. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> bool xref:BloombergLP/bdlc/operator_not_eq-07.adoc[operator!=]( xref:BloombergLP/bdlc/PackedIntArray-0b.adoc[PackedIntArray<TYPE>] const& lhs, xref:BloombergLP/bdlc/PackedIntArray-0b.adoc[PackedIntArray<TYPE>] const& rhs); ---- [.small]#xref:BloombergLP/bdlc/operator_not_eq-07.adoc[_» more..._]# Return `true` if the specified `lhs` and `rhs` arrays do not have the same value, and `false` otherwise. Two arrays do not have the same value if they do not have the same length, or there is at least one valid index position at which corresponding bits do not have the same value. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bdlc/operator_not_eq-008.adoc[operator!=]( xref:BloombergLP/bdlc/BitArray.adoc[BitArray] const& lhs, xref:BloombergLP/bdlc/BitArray.adoc[BitArray] const& rhs); ---- [.small]#xref:BloombergLP/bdlc/operator_not_eq-008.adoc[_» more..._]# Return whether the iterators refer to different positions (see free `operator!=`). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<> bool xref:BloombergLP/bdlc/operator_not_eq-01b.adoc[operator!=]( xref:BloombergLP/bdlc/CompactedArray_ConstIterator.adoc[CompactedArray_ConstIterator] const&, xref:BloombergLP/bdlc/CompactedArray_ConstIterator.adoc[CompactedArray_ConstIterator] const&); ---- [.small]#xref:BloombergLP/bdlc/operator_not_eq-01b.adoc[_» more..._]# Return `true` if the specified `lhs` and `rhs` iterators do not have the same value, and `false` otherwise. Two `CompactedArray_ConstIterator` iterators do not have the same value if one has the default value and the other does not, or neither has the default value and they do not reference the same location in the same array. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> bool xref:BloombergLP/bdlc/operator_not_eq-047d.adoc[operator!=]( xref:BloombergLP/bdlc/CompactedArray_ConstIterator.adoc[CompactedArray_ConstIterator<TYPE>] const& lhs, xref:BloombergLP/bdlc/CompactedArray_ConstIterator.adoc[CompactedArray_ConstIterator<TYPE>] const& rhs); ---- [.small]#xref:BloombergLP/bdlc/operator_not_eq-047d.adoc[_» more..._]# Return `true` if the underlying object value of the specified `lhs` is not the same as the underlying object value of the specified `rhs`, and `false` otherwise. Note that the reference counts are intentionally ignored. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> bool xref:BloombergLP/bdlc/operator_not_eq-007.adoc[operator!=]( xref:BloombergLP/bdlc/CompactedArray_CountedValue.adoc[CompactedArray_CountedValue<TYPE>] const& lhs, xref:BloombergLP/bdlc/CompactedArray_CountedValue.adoc[CompactedArray_CountedValue<TYPE>] const& rhs); ---- [.small]#xref:BloombergLP/bdlc/operator_not_eq-007.adoc[_» more..._]# Return `true` if the specified `lhs` and `rhs` arrays do not have the same value, and `false` otherwise. Two `CompactedArray` arrays do not have the same value if they do not have the same length, or if any corresponding elements (those at the same indices) do not have the same value. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> bool xref:BloombergLP/bdlc/operator_not_eq-0b4.adoc[operator!=]( xref:BloombergLP/bdlc/CompactedArray.adoc[CompactedArray<TYPE>] const& lhs, xref:BloombergLP/bdlc/CompactedArray.adoc[CompactedArray<TYPE>] const& rhs); ---- [.small]#xref:BloombergLP/bdlc/operator_not_eq-0b4.adoc[_» more..._]# Return `true` if the specified `lhs` and `rhs` objects do not have the same value, and `false` otherwise. Two `FlatHashTable` objects do not have the same value if they do not have the same number of entries, or that for some entry contained in `lhs` there is not a entry in `rhs` having the same value. Note that this method requires the (template parameter) type `ENTRY` to be equality‐comparable. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class KEY, class ENTRY, class ENTRY_UTIL, class HASH, class EQUAL> bool xref:BloombergLP/bdlc/operator_not_eq-0be.adoc[operator!=]( xref:BloombergLP/bdlc/FlatHashTable.adoc[FlatHashTable<KEY, ENTRY, ENTRY_UTIL, HASH, EQUAL>] const& lhs, xref:BloombergLP/bdlc/FlatHashTable.adoc[FlatHashTable<KEY, ENTRY, ENTRY_UTIL, HASH, EQUAL>] const& rhs); ---- [.small]#xref:BloombergLP/bdlc/operator_not_eq-0be.adoc[_» more..._]# Return whether the maps differ in key/value contents. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<> bool xref:BloombergLP/bdlc/operator_not_eq-06.adoc[operator!=]( xref:BloombergLP/bdlc/FlatHashMap.adoc[FlatHashMap] const&, xref:BloombergLP/bdlc/FlatHashMap.adoc[FlatHashMap] const&); ---- [.small]#xref:BloombergLP/bdlc/operator_not_eq-06.adoc[_» more..._]# Return `true` if the specified `lhs` and `rhs` objects do not have the same value, and `false` otherwise. Two `FlatHashMap` objects do not have the same value if their sizes are different or one contains an element equal to no element of the other. The hash and equality functors are not involved in the comparison. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class KEY, class VALUE, class HASH, class EQUAL> bool xref:BloombergLP/bdlc/operator_not_eq-0b1.adoc[operator!=]( xref:BloombergLP/bdlc/FlatHashMap.adoc[FlatHashMap<KEY, VALUE, HASH, EQUAL>] const& lhs, xref:BloombergLP/bdlc/FlatHashMap.adoc[FlatHashMap<KEY, VALUE, HASH, EQUAL>] const& rhs); ---- [.small]#xref:BloombergLP/bdlc/operator_not_eq-0b1.adoc[_» more..._]# Return `true` if the specified `lhs` and `rhs` queues do not have the same value, and `false` otherwise. Two queues do not have the same value if they have different lengths or differ in at least one index position. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class T> bool xref:BloombergLP/bdlc/operator_not_eq-0f.adoc[operator!=]( xref:BloombergLP/bdlc/Queue.adoc[Queue<T>] const& lhs, xref:BloombergLP/bdlc/Queue.adoc[Queue<T>] const& rhs); ---- [.small]#xref:BloombergLP/bdlc/operator_not_eq-0f.adoc[_» more..._]# Return `true` if `lhs` and `rhs` do not have the same value and `false` otherwise. Two iterators do not have the same value if they do not refer to the same element of the same container or if one has the end iterator value of a container and the other refers to an element (not the end) of the same container. The behavior is undefined unless `lhs` and `rhs` refer to the same container and are non‐singular (i.e., are not default‐constructed or copies of singular iterators). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bdlc/operator_not_eq-09.adoc[operator!=]( xref:BloombergLP/bdlc/IndexClerkIter.adoc[IndexClerkIter] const& lhs, xref:BloombergLP/bdlc/IndexClerkIter.adoc[IndexClerkIter] const& rhs); ---- [.small]#xref:BloombergLP/bdlc/operator_not_eq-09.adoc[_» more..._]# Return `true` if the specified `lhs` and `rhs` index clerks do not have the same value, and `false` otherwise. Two `IndexClerk` objects do not have the same value if they do not have the same `nextNewIndex()`, or might generate different sequences of integer indices. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bdlc/operator_not_eq-014.adoc[operator!=]( xref:BloombergLP/bdlc/IndexClerk.adoc[IndexClerk] const& lhs, xref:BloombergLP/bdlc/IndexClerk.adoc[IndexClerk] const& rhs); ---- [.small]#xref:BloombergLP/bdlc/operator_not_eq-014.adoc[_» more..._]# Return whether the sets differ in contents. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<> bool xref:BloombergLP/bdlc/operator_not_eq-0473.adoc[operator!=]( xref:BloombergLP/bdlc/FlatHashSet.adoc[FlatHashSet] const&, xref:BloombergLP/bdlc/FlatHashSet.adoc[FlatHashSet] const&); ---- [.small]#xref:BloombergLP/bdlc/operator_not_eq-0473.adoc[_» more..._]# Return `true` if the specified `lhs` and `rhs` objects do not have the same value, and `false` otherwise. Two `FlatHashSet` objects do not have the same value if their sizes are different or one contains an element equal to no element of the other. The hash and equality functors are not involved in the comparison. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class KEY, class HASH, class EQUAL> bool xref:BloombergLP/bdlc/operator_not_eq-01f.adoc[operator!=]( xref:BloombergLP/bdlc/FlatHashSet.adoc[FlatHashSet<KEY, HASH, EQUAL>] const& a, xref:BloombergLP/bdlc/FlatHashSet.adoc[FlatHashSet<KEY, HASH, EQUAL>] const& b); ---- [.small]#xref:BloombergLP/bdlc/operator_not_eq-01f.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#