[#BloombergLP-bdlc-operator_not_eq-008] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::operator!= :relfileprefix: ../../ :mrdocs: Return `true` if `lhs` and `rhs` do not have the same value, else `false`. == Synopsis Declared in `<bdlc_bitarray.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool operator!=( xref:BloombergLP/bdlc/BitArray.adoc[BitArray] const& lhs, xref:BloombergLP/bdlc/BitArray.adoc[BitArray] const& rhs); ---- == Description 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. == Return Value `true` if `lhs` and `rhs` do not have the same value, and `false` otherwise == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | first array to compare | *rhs* | second array to compare |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#