[#bsl-operator_eq-0db] = xref:bsl.adoc[bsl]::operator== :relfileprefix: ../ :mrdocs: Return whether the operands have the same value. == Synopsis Declared in `<bslstl_optional.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class t_TYPE> constexpr bool operator==( xref:bsl/optional-072.adoc[bsl::optional<t_TYPE>] const& value, xref:bsl/nullopt_t.adoc[bsl::nullopt_t] const& nullopt) noexcept; ---- == Description Return `true` if the specified `value` is disengaged, and `false` otherwise. This function can be called in constant expressions only if `t_TYPE` is not allocator‐aware. == Return Value `true` if `value` is disengaged, and `false` otherwise == Parameters [cols="1,4"] |=== | Name| Description | *value* | value compared with or used to initialize the optional | *nullopt* | disengaged‐optional tag; value is unused |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#