[#BloombergLP-bdlb-operator_not_eq-098] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlb.adoc[bdlb]::operator!= :relfileprefix: ../../ :mrdocs: Return `true` if `lhs` and `rhs` do not refer to the same token position. == Synopsis Declared in `<bdlb_tokenizer.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool operator!=( xref:BloombergLP/bdlb/TokenizerIterator.adoc[TokenizerIterator] const& lhs, xref:BloombergLP/bdlb/TokenizerIterator.adoc[TokenizerIterator] const& rhs); ---- == Description Return `true` if the specified `lhs` and `rhs` objects do not have the same value, and `false` otherwise. The behaviour is undefined unless the iterators returned by the same `Tokenizer` object, or if the underlying input has been modified or destroyed since any of those objects were created. == Return Value `true` if `lhs` and `rhs` do not have the same value, and `false` otherwise == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | left‐hand iterator to compare | *rhs* | right‐hand iterator to compare |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#