7 #if !defined(CNL_IMPL_TYPE_TRAITS_CONDITIONAL3_H)
8 #define CNL_IMPL_TYPE_TRAITS_CONDITIONAL3_H
10 #include "../polarity.h"
12 #include <type_traits>
17 int Value,
typename Positive,
typename Zero,
typename Negative,
18 polarity Polarity = measure_polarity(Value)>
21 template<
int Value,
typename Positive,
typename Zero,
typename Negative>
22 struct conditional3<Value, Positive, Zero, Negative, polarity::neutral>
23 : std::type_identity<Zero> {
26 template<
int Value,
typename Positive,
typename Zero,
typename Negative>
27 struct conditional3<Value, Positive, Zero, Negative, polarity::negative>
28 : std::type_identity<Negative> {
31 template<
int Value,
typename Positive,
typename Zero,
typename Negative>
32 struct conditional3<Value, Positive, Zero, Negative, polarity::positive>
33 : std::type_identity<Positive> {
36 template<
int Value,
typename Positive,
typename Zero,
typename Negative>
37 using conditional3_t =
typename conditional3<Value, Positive, Zero, Negative>::type;
41 #endif // CNL_IMPL_TYPE_TRAITS_CONDITIONAL3_H