[#BloombergLP-bslma-operator_not_eq-05] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslma.adoc[bslma]::operator!= :relfileprefix: ../../ :mrdocs: Return `true` if the specified `lhs` and `rhs` do not have the same value. == Synopsis Declared in `<bslma_managedptrdeleter.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool operator!=( xref:BloombergLP/bslma/ManagedPtrDeleter.adoc[ManagedPtrDeleter] const& lhs, xref:BloombergLP/bslma/ManagedPtrDeleter.adoc[ManagedPtrDeleter] const& rhs); ---- == Description Return `true` if the specified `lhs` and `rhs` objects do not have the same value, and `false` otherwise. Two `ManagedPtrDeleter` objects do not have the same value if any of the corresponding values of their `object`, `factory`, and `deleter` attributes are not the same. == Return Value `true` if `lhs` and `rhs` do not have the same value, and `false` otherwise == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | The left‐hand `ManagedPtrDeleter` operand. | *rhs* | The right‐hand `ManagedPtrDeleter` operand. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#