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_NUM_TRAITS_SET_ROUNDING_H)
8 #define CNL_IMPL_NUM_TRAITS_SET_ROUNDING_H
9 
10 #include "../type_traits/remove_cvref.h"
11 #include "is_composite.h"
12 #include "rounding.h"
13 
14 #include <type_traits>
15 
16 namespace cnl {
21  template<typename Number, rounding_tag RoundingTag>
22  struct set_rounding;
23 
24  template<typename Number>
25  requires(!is_composite_v<Number>) struct set_rounding<Number, rounding_t<Number>>
26  : std::type_identity<Number> {
27  };
28 
29  template<typename Number, rounding_tag RoundingTag>
30  struct set_rounding<Number const&, RoundingTag>
32  };
33 
34  template<typename Number, rounding_tag RoundingTag>
35  struct set_rounding<Number&, RoundingTag> : set_rounding<Number, RoundingTag> {
36  };
37 
38  template<typename Number, rounding_tag RoundingTag>
39  struct set_rounding<Number&&, RoundingTag> : set_rounding<Number, RoundingTag> {
40  };
41 
45  template<typename Number, rounding_tag RoundingTag>
47 }
48 
49 #endif // CNL_IMPL_NUM_TRAITS_SET_ROUNDING_H
cnl::rounding_t
typename rounding< Number >::type rounding_t
helper alias of rounding
Definition: rounding.h:37
rounding.h
cnl::set_rounding
given a numeric type, defines member type as the equivalent type with the given rounding mode User-sp...
Definition: set_rounding.h:22
cnl
compositional numeric library
Definition: abort.h:15
cnl::set_rounding_t
typename set_rounding< Number, RoundingTag >::type set_rounding_t
helper alias of set_rounding
Definition: set_rounding.h:46