[#BloombergLP-bslma-operator_not_eq-09] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslma.adoc[bslma]::operator!= :relfileprefix: ../../ :mrdocs: Inequality operators == Synopses Declared in `<bslma_managedptrdeleter.h>` Return `true` if the specified `lhs` and `rhs` do not have the same value. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bslma/operator_not_eq-05.adoc[operator!=]( xref:BloombergLP/bslma/ManagedPtrDeleter.adoc[ManagedPtrDeleter] const& lhs, xref:BloombergLP/bslma/ManagedPtrDeleter.adoc[ManagedPtrDeleter] const& rhs); ---- [.small]#xref:BloombergLP/bslma/operator_not_eq-05.adoc[_» more..._]# Return `true` unless `lhs` and `rhs` share the same mechanism. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class T1, class T2> bool xref:BloombergLP/bslma/operator_not_eq-0e.adoc[operator!=]( xref:BloombergLP/bslma/StdTestAllocator.adoc[StdTestAllocator<T1>] const& lhs, xref:BloombergLP/bslma/StdTestAllocator.adoc[StdTestAllocator<T2>] const& rhs); ---- [.small]#xref:BloombergLP/bslma/operator_not_eq-0e.adoc[_» more..._]# Return `true` unless the specified `lhs` is a proxy for `rhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> bool xref:BloombergLP/bslma/operator_not_eq-0f.adoc[operator!=]( xref:BloombergLP/bslma/StdTestAllocator.adoc[StdTestAllocator<TYPE>] const& lhs, xref:BloombergLP/bslma/TestAllocator.adoc[TestAllocator] const* rhs); ---- [.small]#xref:BloombergLP/bslma/operator_not_eq-0f.adoc[_» more..._]# Return `true` unless the specified `rhs` is a proxy for `lhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> bool xref:BloombergLP/bslma/operator_not_eq-0a.adoc[operator!=]( xref:BloombergLP/bslma/TestAllocator.adoc[TestAllocator] const* lhs, xref:BloombergLP/bslma/StdTestAllocator.adoc[StdTestAllocator<TYPE>] const& rhs); ---- [.small]#xref:BloombergLP/bslma/operator_not_eq-0a.adoc[_» more..._]# == Return Value * `true` if `lhs` and `rhs` do not have the same value, and `false` otherwise * `true` unless `lhs` and `rhs` share the same mechanism object. * `true` unless `lhs` is a proxy for `rhs`. * `true` unless `rhs` is a proxy for `lhs`. == 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]#