// // traits/static_require_concept.hpp // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2023 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #ifndef ASIO_TRAITS_STATIC_REQUIRE_CONCEPT_HPP #define ASIO_TRAITS_STATIC_REQUIRE_CONCEPT_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include "asio/detail/config.hpp" #include "asio/detail/type_traits.hpp" #include "asio/traits/static_query.hpp" #if defined(ASIO_HAS_DECLTYPE) \ && defined(ASIO_HAS_NOEXCEPT) # define ASIO_HAS_DEDUCED_STATIC_REQUIRE_CONCEPT_TRAIT 1 #endif // defined(ASIO_HAS_DECLTYPE) // && defined(ASIO_HAS_NOEXCEPT) #include "asio/detail/push_options.hpp" namespace asio { namespace traits { template struct static_require_concept_default; template struct static_require_concept; } // namespace traits namespace detail { struct no_static_require_concept { ASIO_STATIC_CONSTEXPR(bool, is_valid = false); }; template struct static_require_concept_trait : conditional< is_same::type>::value && is_same::type>::value, no_static_require_concept, traits::static_require_concept< typename decay::type, typename decay::type> >::type { }; #if defined(ASIO_HAS_DEDUCED_STATIC_REQUIRE_CONCEPT_TRAIT) #if defined(ASIO_HAS_WORKING_EXPRESSION_SFINAE) template struct static_require_concept_trait::type::value() == traits::static_query::value() >::type> { ASIO_STATIC_CONSTEXPR(bool, is_valid = true); }; #else // defined(ASIO_HAS_WORKING_EXPRESSION_SFINAE) false_type static_require_concept_test(...); template true_type static_require_concept_test(T*, Property*, typename enable_if< Property::value() == traits::static_query::value() >::type* = 0); template struct has_static_require_concept { ASIO_STATIC_CONSTEXPR(bool, value = decltype((static_require_concept_test)( static_cast(0), static_cast(0)))::value); }; template struct static_require_concept_trait::type, typename decay::type>::value >::type> { ASIO_STATIC_CONSTEXPR(bool, is_valid = true); }; #endif // defined(ASIO_HAS_WORKING_EXPRESSION_SFINAE) #endif // defined(ASIO_HAS_DEDUCED_STATIC_REQUIRE_CONCEPT_TRAIT) } // namespace detail namespace traits { template struct static_require_concept_default : detail::static_require_concept_trait { }; template struct static_require_concept : static_require_concept_default { }; } // namespace traits } // namespace asio #include "asio/detail/pop_options.hpp" #endif // ASIO_TRAITS_STATIC_REQUIRE_CONCEPT_HPP