Blame view

3rdparty/boost_1_81_0/boost/hana/eval_if.hpp 3.32 KB
63e88f80   Hu Chunming   提交三方库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
  /*!
  @file
  Defines `boost::hana::eval_if`.
  
  Copyright Louis Dionne 2013-2022
  Distributed under the Boost Software License, Version 1.0.
  (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
   */
  
  #ifndef BOOST_HANA_EVAL_IF_HPP
  #define BOOST_HANA_EVAL_IF_HPP
  
  #include <boost/hana/fwd/eval_if.hpp>
  
  #include <boost/hana/bool.hpp>
  #include <boost/hana/concept/constant.hpp>
  #include <boost/hana/concept/logical.hpp>
  #include <boost/hana/config.hpp>
  #include <boost/hana/core/dispatch.hpp>
  #include <boost/hana/eval.hpp>
  #include <boost/hana/if.hpp>
  
  #include <type_traits>
  
  
  namespace boost { namespace hana {
      //! @cond
      template <typename Cond, typename Then, typename Else>
      constexpr decltype(auto) eval_if_t::operator()(Cond&& cond, Then&& then_, Else&& else_) const {
          using Bool = typename hana::tag_of<Cond>::type;
          using EvalIf = BOOST_HANA_DISPATCH_IF(eval_if_impl<Bool>,
              hana::Logical<Bool>::value
          );
  
      #ifndef BOOST_HANA_CONFIG_DISABLE_CONCEPT_CHECKS
          static_assert(hana::Logical<Bool>::value,
          "hana::eval_if(cond, then, else) requires 'cond' to be a Logical");
      #endif
  
          return EvalIf::apply(static_cast<Cond&&>(cond),
                               static_cast<Then&&>(then_),
                               static_cast<Else&&>(else_));
      }
      //! @endcond
  
      template <typename L, bool condition>
      struct eval_if_impl<L, when<condition>> : default_ {
          template <typename ...Args>
          static constexpr auto apply(Args&& ...) = delete;
      };
  
      //////////////////////////////////////////////////////////////////////////
      // Model for arithmetic data types
      //////////////////////////////////////////////////////////////////////////
      template <typename L>
      struct eval_if_impl<L, when<std::is_arithmetic<L>::value>> {
          template <typename Cond, typename T, typename E>
          static constexpr auto apply(Cond const& cond, T&& t, E&& e) {
              return cond ? hana::eval(static_cast<T&&>(t))
                          : hana::eval(static_cast<E&&>(e));
          }
      };
  
      //////////////////////////////////////////////////////////////////////////
      // Model for Constants over a Logical
      //////////////////////////////////////////////////////////////////////////
      template <typename C>
      struct eval_if_impl<C, when<
          hana::Constant<C>::value &&
          Logical<typename C::value_type>::value
      >> {
          template <typename Then, typename Else>
          static constexpr decltype(auto)
          eval_if_helper(hana::true_, Then&& t, Else&&)
          { return hana::eval(static_cast<Then&&>(t)); }
  
          template <typename Then, typename Else>
          static constexpr decltype(auto)
          eval_if_helper(hana::false_, Then&&, Else&& e)
          { return hana::eval(static_cast<Else&&>(e)); }
  
          template <typename Cond, typename Then, typename Else>
          static constexpr decltype(auto) apply(Cond const&, Then&& t, Else&& e) {
              constexpr auto cond = hana::value<Cond>();
              constexpr bool truth_value = hana::if_(cond, true, false);
              return eval_if_helper(hana::bool_<truth_value>{},
                                    static_cast<Then&&>(t),
                                    static_cast<Else&&>(e));
          }
      };
  }} // end namespace boost::hana
  
  #endif // !BOOST_HANA_EVAL_IF_HPP