CNL  2.0.2 (development)
Compositional Numeric Library
conditional3.h
1 
2 // Copyright John McFarlane 2018.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file ../LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #if !defined(CNL_IMPL_TYPE_TRAITS_CONDITIONAL3_H)
8 #define CNL_IMPL_TYPE_TRAITS_CONDITIONAL3_H
9 
10 #include "../polarity.h"
11 
12 #include <type_traits>
13 
14 namespace cnl {
15  namespace _impl {
16  template<
17  int Value, typename Positive, typename Zero, typename Negative,
18  polarity Polarity = measure_polarity(Value)>
19  struct conditional3;
20 
21  template<int Value, typename Positive, typename Zero, typename Negative>
22  struct conditional3<Value, Positive, Zero, Negative, polarity::neutral>
23  : std::type_identity<Zero> {
24  };
25 
26  template<int Value, typename Positive, typename Zero, typename Negative>
27  struct conditional3<Value, Positive, Zero, Negative, polarity::negative>
28  : std::type_identity<Negative> {
29  };
30 
31  template<int Value, typename Positive, typename Zero, typename Negative>
32  struct conditional3<Value, Positive, Zero, Negative, polarity::positive>
33  : std::type_identity<Positive> {
34  };
35 
36  template<int Value, typename Positive, typename Zero, typename Negative>
37  using conditional3_t = typename conditional3<Value, Positive, Zero, Negative>::type;
38  }
39 }
40 
41 #endif // CNL_IMPL_TYPE_TRAITS_CONDITIONAL3_H
cnl
compositional numeric library
Definition: abort.h:15