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_INTEGER_DEFINITION_H)
8 #define CNL_IMPL_ELASTIC_INTEGER_DEFINITION_H
9 
10 #include "../../integer.h"
11 #include "../elastic_tag.h"
12 #include "../num_traits/digits.h"
13 #include "../wrapper.h"
14 
16 namespace cnl {
36  template<int Digits = digits_v<int>, integer Narrowest = int>
37  using elastic_integer = _impl::wrapper<
38  typename elastic_tag<Digits, Narrowest>::rep,
39  elastic_tag<Digits, Narrowest>>;
40 }
41 
42 #endif // CNL_IMPL_ELASTIC_INTEGER_DEFINITION_H
cnl
compositional numeric library
Definition: abort.h:15
cnl::elastic_integer
_impl::wrapper< typename elastic_tag< Digits, Narrowest >::rep, elastic_tag< Digits, Narrowest > > elastic_integer
An integer type with auto-widening operators.
Definition: definition.h:39