[#bsl-operator_eq-0ec] = xref:bsl.adoc[bsl]::operator== :relfileprefix: ../ :mrdocs: Return `true` if the specified `lhs` shared pointer does not refer to an object, and `false` otherwise. == Synopsis Declared in `<bslstl_sharedptr.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class LHS_TYPE> bool operator==( xref:bsl/shared_ptr-0a.adoc[shared_ptr<LHS_TYPE>] const& lhs, xref:bsl/nullptr_t-08.adoc[nullptr_t] nullPointerLiteral) noexcept; ---- == Return Value `true` if `lhs` does not refer to an object == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | left‐hand side operand | *nullPointerLiteral* | null‐pointer literal (unused; selects this overload) |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#