mrdocs::Expected::operator*
Dereference operators
Synopses
Declared in <mrdocs/Support/Expected.hpp>
Dereference to a const lvalue value reference.
[[nodiscard]]
constexpr
T const&
operator*() const & noexcept;
Dereference to an lvalue value reference.
[[nodiscard]]
constexpr
T&
operator*() & noexcept;
Dereference to a const rvalue value reference.
[[nodiscard]]
constexpr
T const&&
operator*() const && noexcept;
Dereference to an rvalue value reference.
[[nodiscard]]
constexpr
T&&
operator*() && noexcept;
Return Value
Reference to the contained value.
Created with MrDocs