7 #if !defined(CNL_IMPL_WRAPPER_SET_ROUNDING_H)
8 #define CNL_IMPL_WRAPPER_SET_ROUNDING_H
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"
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>> {
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> {
30 #endif // CNL_IMPL_WRAPPER_SET_ROUNDING_H