File indexing completed on 2025-12-16 09:59:08
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031 #ifndef BOOST_OUTCOME_RESULT_VALUE_OBSERVERS_HPP
0032 #define BOOST_OUTCOME_RESULT_VALUE_OBSERVERS_HPP
0033
0034 #include "basic_result_storage.hpp"
0035
0036 BOOST_OUTCOME_V2_NAMESPACE_EXPORT_BEGIN
0037
0038 namespace detail
0039 {
0040 template <class Base, class R, class NoValuePolicy> class basic_result_value_observers : public Base
0041 {
0042 public:
0043 using value_type = R;
0044 using Base::Base;
0045
0046 constexpr value_type &assume_value() & noexcept
0047 {
0048 NoValuePolicy::narrow_value_check(static_cast<basic_result_value_observers &>(*this));
0049 return this->_state._value;
0050 }
0051 constexpr const value_type &assume_value() const & noexcept
0052 {
0053 NoValuePolicy::narrow_value_check(static_cast<const basic_result_value_observers &>(*this));
0054 return this->_state._value;
0055 }
0056 constexpr value_type &&assume_value() && noexcept
0057 {
0058 NoValuePolicy::narrow_value_check(static_cast<basic_result_value_observers &&>(*this));
0059 return static_cast<value_type &&>(this->_state._value);
0060 }
0061 constexpr const value_type &&assume_value() const && noexcept
0062 {
0063 NoValuePolicy::narrow_value_check(static_cast<const basic_result_value_observers &&>(*this));
0064 return static_cast<const value_type &&>(this->_state._value);
0065 }
0066
0067 constexpr value_type &value() &
0068 {
0069 NoValuePolicy::wide_value_check(static_cast<basic_result_value_observers &>(*this));
0070 return this->_state._value;
0071 }
0072 constexpr const value_type &value() const &
0073 {
0074 NoValuePolicy::wide_value_check(static_cast<const basic_result_value_observers &>(*this));
0075 return this->_state._value;
0076 }
0077 constexpr value_type &&value() &&
0078 {
0079 NoValuePolicy::wide_value_check(static_cast<basic_result_value_observers &&>(*this));
0080 return static_cast<value_type &&>(this->_state._value);
0081 }
0082 constexpr const value_type &&value() const &&
0083 {
0084 NoValuePolicy::wide_value_check(static_cast<const basic_result_value_observers &&>(*this));
0085 return static_cast<const value_type &&>(this->_state._value);
0086 }
0087 };
0088 template <class Base, class NoValuePolicy> class basic_result_value_observers<Base, void, NoValuePolicy> : public Base
0089 {
0090 public:
0091 using Base::Base;
0092
0093 constexpr void assume_value() & noexcept { NoValuePolicy::narrow_value_check(static_cast<basic_result_value_observers &>(*this)); }
0094 constexpr void assume_value() const & noexcept { NoValuePolicy::narrow_value_check(static_cast<const basic_result_value_observers &>(*this)); }
0095 constexpr void assume_value() && noexcept { NoValuePolicy::narrow_value_check(static_cast<basic_result_value_observers &&>(*this)); }
0096 constexpr void assume_value() const && noexcept { NoValuePolicy::narrow_value_check(static_cast<const basic_result_value_observers &&>(*this)); }
0097
0098 constexpr void value() & { NoValuePolicy::wide_value_check(static_cast<basic_result_value_observers &>(*this)); }
0099 constexpr void value() const & { NoValuePolicy::wide_value_check(static_cast<const basic_result_value_observers &>(*this)); }
0100 constexpr void value() && { NoValuePolicy::wide_value_check(static_cast<basic_result_value_observers &&>(*this)); }
0101 constexpr void value() const && { NoValuePolicy::wide_value_check(static_cast<const basic_result_value_observers &&>(*this)); }
0102 };
0103 }
0104
0105 BOOST_OUTCOME_V2_NAMESPACE_END
0106
0107 #endif