mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-21 15:50:07 +01:00
util: Implement Expected::operator*()&&
It is currently unused, but implementing it is closer to std::expected.
This commit is contained in:
@@ -50,6 +50,13 @@ BOOST_AUTO_TEST_CASE(expected_value_rvalue)
|
||||
BOOST_CHECK_EQUAL(*moved, 5);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(expected_deref_rvalue)
|
||||
{
|
||||
Expected<std::unique_ptr<int>, int> no_copy{std::make_unique<int>(5)};
|
||||
const auto moved{*std::move(no_copy)};
|
||||
BOOST_CHECK_EQUAL(*moved, 5);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(expected_value_or)
|
||||
{
|
||||
Expected<std::unique_ptr<int>, int> no_copy{std::make_unique<int>(1)};
|
||||
|
||||
@@ -88,8 +88,9 @@ public:
|
||||
constexpr E& error() & noexcept LIFETIMEBOUND { return *Assert(std::get_if<1>(&m_data)); }
|
||||
constexpr E&& error() && noexcept LIFETIMEBOUND { return std::move(error()); }
|
||||
|
||||
constexpr T& operator*() noexcept LIFETIMEBOUND { return value(); }
|
||||
constexpr const T& operator*() const noexcept LIFETIMEBOUND { return value(); }
|
||||
constexpr T& operator*() & noexcept LIFETIMEBOUND { return value(); }
|
||||
constexpr const T& operator*() const& noexcept LIFETIMEBOUND { return value(); }
|
||||
constexpr T&& operator*() && noexcept LIFETIMEBOUND { return std::move(value()); }
|
||||
|
||||
constexpr T* operator->() noexcept LIFETIMEBOUND { return &value(); }
|
||||
constexpr const T* operator->() const noexcept LIFETIMEBOUND { return &value(); }
|
||||
|
||||
Reference in New Issue
Block a user