123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- #ifndef BOOST_OUTCOME_TRAIT_HPP
- #define BOOST_OUTCOME_TRAIT_HPP
- #include "config.hpp"
- BOOST_OUTCOME_V2_NAMESPACE_EXPORT_BEGIN
- namespace trait
- {
-
- template <class R> //
- static constexpr bool type_can_be_used_in_basic_result = //
- (!std::is_reference<R>::value
- && !BOOST_OUTCOME_V2_NAMESPACE::detail::is_in_place_type_t<std::decay_t<R>>::value
- && !is_success_type<R>
- && !is_failure_type<R>
- && !std::is_array<R>::value
- && (std::is_void<R>::value || (std::is_object<R>::value
- && std::is_destructible<R>::value))
- );
-
- template <class T> struct is_move_bitcopying
- {
- static constexpr bool value = false;
- };
-
- template <class E> struct is_error_type
- {
- static constexpr bool value = false;
- };
-
- template <class E, class Enum> struct is_error_type_enum
- {
- static constexpr bool value = false;
- };
- namespace detail
- {
- template <class T> using devoid = BOOST_OUTCOME_V2_NAMESPACE::detail::devoid<T>;
- template <class T> std::add_rvalue_reference_t<devoid<T>> declval() noexcept;
-
- namespace detector_impl
- {
- template <class...> using void_t = void;
- template <class Default, class, template <class...> class Op, class... Args> struct detector
- {
- static constexpr bool value = false;
- using type = Default;
- };
- template <class Default, template <class...> class Op, class... Args> struct detector<Default, void_t<Op<Args...>>, Op, Args...>
- {
- static constexpr bool value = true;
- using type = Op<Args...>;
- };
- }
- template <template <class...> class Op, class... Args> using is_detected = detector_impl::detector<void, void, Op, Args...>;
- template <class Arg> using result_of_make_error_code = decltype(make_error_code(declval<Arg>()));
- template <class Arg> using introspect_make_error_code = is_detected<result_of_make_error_code, Arg>;
- template <class Arg> using result_of_make_exception_ptr = decltype(make_exception_ptr(declval<Arg>()));
- template <class Arg> using introspect_make_exception_ptr = is_detected<result_of_make_exception_ptr, Arg>;
- template <class T> struct _is_error_code_available
- {
- static constexpr bool value = detail::introspect_make_error_code<T>::value;
- using type = typename detail::introspect_make_error_code<T>::type;
- };
- template <class T> struct _is_exception_ptr_available
- {
- static constexpr bool value = detail::introspect_make_exception_ptr<T>::value;
- using type = typename detail::introspect_make_exception_ptr<T>::type;
- };
- }
-
- template <class T> struct is_error_code_available
- {
- static constexpr bool value = detail::_is_error_code_available<std::decay_t<T>>::value;
- using type = typename detail::_is_error_code_available<std::decay_t<T>>::type;
- };
- template <class T> constexpr bool is_error_code_available_v = detail::_is_error_code_available<std::decay_t<T>>::value;
-
- template <class T> struct is_exception_ptr_available
- {
- static constexpr bool value = detail::_is_exception_ptr_available<std::decay_t<T>>::value;
- using type = typename detail::_is_exception_ptr_available<std::decay_t<T>>::type;
- };
- template <class T> constexpr bool is_exception_ptr_available_v = detail::_is_exception_ptr_available<std::decay_t<T>>::value;
- }
- BOOST_OUTCOME_V2_NAMESPACE_END
- #endif
|