CNL  2.0.2 (development)
Compositional Numeric Library
set_rounding.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_WRAPPER_SET_ROUNDING_H)
8 #define CNL_IMPL_WRAPPER_SET_ROUNDING_H
9 
10 #include "../num_traits/rep_of.h"
11 #include "../num_traits/set_rounding.h"
12 #include "../num_traits/set_tag.h"
13 #include "../num_traits/tag_of.h"
14 #include "../rounding/is_rounding_tag.h"
15 #include "is_wrapper.h"
16 
18 namespace cnl {
19  template<_impl::any_wrapper Number, rounding_tag RoundingTag>
20  requires(!_impl::is_rounding_tag<_impl::tag_of_t<Number>>::value) struct set_rounding<Number, RoundingTag>
21  : set_rep<Number, set_rounding_t<_impl::rep_of_t<Number>, RoundingTag>> {
22  };
23 
24  template<_impl::any_wrapper Number, rounding_tag RoundingTag>
25  requires(_impl::is_rounding_tag<_impl::tag_of_t<Number>>::value) struct set_rounding<Number, RoundingTag>
26  : set_tag<Number, RoundingTag> {
27  };
28 }
29 
30 #endif // CNL_IMPL_WRAPPER_SET_ROUNDING_H
cnl
compositional numeric library
Definition: abort.h:15