[#util-Expected-0b-operator_star-04] = xref:util.adoc[util]::xref:util/Expected-0b.adoc[Expected]::operator* :relfileprefix: ../../ :mrdocs: Access the result value without checking. == Synopses Declared in `<util/expected.h>` Access the result value without checking. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr T& xref:util/Expected-0b/operator_star-07.adoc[operator*]() & noexcept; ---- [.small]#xref:util/Expected-0b/operator_star-07.adoc[_» more..._]# Access the result value without checking. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr T const& xref:util/Expected-0b/operator_star-08.adoc[operator*]() const & noexcept; ---- [.small]#xref:util/Expected-0b/operator_star-08.adoc[_» more..._]# Access the result value without checking. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr T&& xref:util/Expected-0b/operator_star-01.adoc[operator*]() && noexcept; ---- [.small]#xref:util/Expected-0b/operator_star-01.adoc[_» more..._]# == Return Value * A reference to the stored result value. * A const reference to the stored result value. * An rvalue reference to the stored result value. [.small]#Created with https://www.mrdocs.com[MrDocs]#