[#BloombergLP-bdlc-operator_not_eq-0f] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::operator!= :relfileprefix: ../../ :mrdocs: Return whether the specified queues do not have the same value. == Synopsis Declared in `<bdlc_queue.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class T> bool operator!=( xref:BloombergLP/bdlc/Queue.adoc[Queue<T>] const& lhs, xref:BloombergLP/bdlc/Queue.adoc[Queue<T>] const& rhs); ---- == Description 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. == Return Value `true` if not equal, and `false` otherwise == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | left‐hand‐side queue to compare | *rhs* | right‐hand‐side queue to compare |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#