7 #if !defined(CNL_IMPL_WIDE_TAG_DEFINITION_H)
8 #define CNL_IMPL_WIDE_TAG_DEFINITION_H
10 #include "../custom_operator/homogeneous_operator_tag_base.h"
11 #include "../duplex_integer/narrowest_integer.h"
12 #include "../num_traits/digits.h"
13 #include "../num_traits/max_digits.h"
14 #include "../num_traits/set_digits.h"
15 #include "declaration.h"
18 #include <type_traits>
23 template<
int Digits,
typename Narrowest,
bool NeedsDuplex>
27 template<
int Digits,
typename Narrowest>
28 struct wide_tag_rep<Digits, Narrowest, false>
29 : std::type_identity<set_digits_t<Narrowest, std::max(cnl::digits_v<Narrowest>, Digits)>> {
33 template<
int Digits,
typename Narrowest>
34 struct wide_tag_rep<Digits, Narrowest, true>
35 : std::type_identity<narrowest_integer_t<Digits, Narrowest>> {
38 template<
int Digits,
typename Narrowest,
bool NeedsDuplex>
39 using wide_tag_rep_t =
typename wide_tag_rep<Digits, Narrowest, NeedsDuplex>::type;
42 template<
int Digits,
typename Narrowest>
43 struct wide_tag : _impl::homogeneous_operator_tag_base {
44 using rep = _impl::wide_tag_rep_t<Digits, Narrowest, (Digits > _impl::max_digits<Narrowest>)>;
48 #endif // CNL_IMPL_WIDE_TAG_DEFINITION_H