CNL  2.0.2 (development)
Compositional Numeric Library
definition.h
1 
2 // Copyright John McFarlane 2019.
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_ELASTIC_TAG_DEFINITION_H)
8 #define CNL_IMPL_ELASTIC_TAG_DEFINITION_H
9 
10 #include "../num_traits/digits.h"
11 #include "../num_traits/set_digits.h"
12 #include "declaration.h"
13 
14 #include <algorithm>
15 
17 namespace cnl {
18  template<int Digits, typename Narrowest>
19  struct elastic_tag {
20  // A remarkable property of the elastic_tag is that it's rep type is dependent upon it.
21  using rep = set_digits_t<Narrowest, std::max(digits_v<Narrowest>, Digits)>;
22  };
23 }
24 
25 #endif // CNL_IMPL_ELASTIC_TAG_DEFINITION_H
cnl::set_digits_t
typename set_digits< T, Digits >::type set_digits_t
Alias to set_digits.
Definition: set_digits.h:95
cnl
compositional numeric library
Definition: abort.h:15
std::max
T max(T... args)