[#bsl-operator_not_eq-0900] = xref:bsl.adoc[bsl]::operator!= :relfileprefix: ../ :mrdocs: Return `true` if the specified `lhs` and `rhs` objects do not have the same value, and `false` otherwise. Two `queue` objects `lhs` and `rhs` do not have the same value if they do not have the same number of elements, or some element in the ordered sequence of elements of `lhs` does not have the same value as the corresponding element in the ordered sequence of elements of `rhs`. This method requires that the (template parameter) type `VALUE` be `equality‐comparable` (see {Requirements on `VALUE`}). == Synopsis Declared in `<bslstl_queue.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class VALUE, class CONTAINER> bool operator!=( xref:bsl/queue-0a5.adoc[queue<VALUE, CONTAINER>] const& lhs, xref:bsl/queue-0a5.adoc[queue<VALUE, CONTAINER>] const& rhs); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#