CNL  2.0.2 (development)
Compositional Numeric Library
rounding_integer.h
1 
2 // Copyright John McFarlane 2015 - 2017.
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_ROUNDING_INTEGER_H)
8 #define CNL_ROUNDING_INTEGER_H
9 
10 #include "_impl/custom_operator/tagged.h"
11 #include "_impl/num_traits/is_composite.h"
12 #include "_impl/num_traits/rep_of.h"
13 #include "_impl/num_traits/rounding.h"
14 #include "_impl/num_traits/set_rounding.h"
15 #include "_impl/num_traits/to_rep.h"
16 #include "_impl/rounding.h"
17 #include "_impl/rounding/convert_operator.h"
18 #include "_impl/rounding/is_rounding_tag.h"
19 #include "_impl/rounding/nearest_rounding_tag.h"
20 #include "_impl/wrapper.h"
21 
22 #include <type_traits>
23 
25 namespace cnl {
33 
34  template<typename Rep = int, rounding_tag Tag = nearest_rounding_tag>
35  using rounding_integer = _impl::wrapper<Rep, Tag>;
36 
38  // cnl::rounding
39 
41  template<_impl::any_wrapper Number>
42  requires(!_impl::is_rounding_tag<typename Number::tag>::value) struct rounding<Number>
43  : rounding<typename Number::rep> {
44  };
46 
47  template<typename Rep, rounding_tag Tag>
48  struct rounding<_impl::wrapper<Rep, Tag>>
49  : std::type_identity<Tag> {
50  };
51 
53  // cnl::_impl::set_rounding
54 
55  template<typename Number, rounding_tag Tag>
56  requires(is_composite<Number>::value && !_impl::is_wrapper<Number>) struct set_rounding<Number, Tag>
57  : std::type_identity<
58  _impl::set_rep_t<Number, set_rounding_t<_impl::rep_of_t<Number>, Tag>>> {
59  };
60 
62  template<int Digits, class Rep, rounding_tag Tag>
63  requires(Digits < 0) struct scale<Digits, 2, _impl::wrapper<Rep, Tag>>
64  : _impl::default_scale<Digits, 2, _impl::wrapper<Rep, Tag>> {
65  };
67 
68  template<int Digits, int Radix, class Rep, rounding_tag Tag>
69  requires(0 <= Digits) struct scale<
70  Digits, Radix, _impl::wrapper<Rep, Tag>> {
71  [[nodiscard]] constexpr auto operator()(_impl::wrapper<Rep, Tag> const& s) const
72  {
73  return _impl::from_rep<_impl::wrapper<Rep, Tag>>(
74  scale<Digits, Radix, Rep>{}(_impl::to_rep(s)));
75  }
76  };
77 
79  // cnl::set_rep<rounding_integer, Rep>
80 
82  template<typename NumberRep, rounding_tag NumberTag, typename Rep>
83  requires(!_impl::is_wrapper<Rep>) struct set_rep<
84  _impl::wrapper<NumberRep, NumberTag>, Rep>
85  : std::type_identity<_impl::wrapper<Rep, NumberTag>> {
86  };
88 
90  // cnl::set_tag<rounding_integer, Tag>
91 
92  template<typename NumberRep, rounding_tag NumberTag, tag Tag>
93  struct set_tag<_impl::wrapper<NumberRep, NumberTag>, Tag>
94  : std::type_identity<_impl::wrapper<NumberRep, Tag>> {
95  };
96 }
97 
98 #endif // CNL_ROUNDING_INTEGER_H
rounding.h
essential definitions related to the integer rounding
cnl::rounding_integer
_impl::wrapper< Rep, Tag > rounding_integer
An integer which facilitates different rounding modes.
Definition: rounding_integer.h:35
cnl::rounding
given a numeric type, defines member type as its rounding mode
Definition: rounding.h:22
cnl
compositional numeric library
Definition: abort.h:15