CNL  2.0.2 (development)
Compositional Numeric Library
scale.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_WIDE_INTEGER_SCALE_H)
8 #define CNL_IMPL_WIDE_INTEGER_SCALE_H
9 
10 #include "../num_traits/scale.h"
11 #include "custom_operator.h"
12 #include "definition.h"
13 
15 namespace cnl {
16  template<
17  int Digits, int Radix, typename NumberRep, int NumberTagDigits,
18  typename NumberTagNarrowest>
19  struct scale<
20  Digits, Radix, _impl::wrapper<NumberRep, wide_tag<NumberTagDigits, NumberTagNarrowest>>>
21  : _impl::default_scale<
22  Digits, Radix,
23  _impl::wrapper<NumberRep, wide_tag<NumberTagDigits, NumberTagNarrowest>>> {
24  };
25 }
26 
27 #endif // CNL_IMPL_WIDE_INTEGER_SCALE_H
cnl
compositional numeric library
Definition: abort.h:15