7 #if !defined(CNL_IMPL_ROUNDING_NATIVE_ROUNDING_TAG_H)
8 #define CNL_IMPL_ROUNDING_NATIVE_ROUNDING_TAG_H
10 #include "../custom_operator/native_tag.h"
11 #include "is_rounding_tag.h"
14 #include <type_traits>
25 : _impl::homogeneous_deduction_tag_base
26 , _impl::homogeneous_operator_tag_base {
35 template<
typename Source,
typename Destination>
36 struct custom_operator<_impl::convert_op, op_value<Source>, op_value<Destination, native_rounding_tag>>
37 : custom_operator<_impl::convert_op, op_value<Source>, op_value<Destination>> {
40 template<_impl::unary_arithmetic_op Operator,
typename Operand>
41 struct custom_operator<Operator, op_value<Operand, native_rounding_tag>>
42 : custom_operator<Operator, op_value<Operand, _impl::native_tag>> {
45 template<_impl::binary_arithmetic_op Operator,
typename Lhs,
typename Rhs>
46 struct custom_operator<
48 op_value<Lhs, native_rounding_tag>,
49 op_value<Rhs, native_rounding_tag>>
50 : custom_operator<Operator, op_value<Lhs>, op_value<Rhs>> {
53 template<_impl::shift_op Operator, tag RhsTag,
typename Lhs,
typename Rhs>
54 struct custom_operator<
56 op_value<Lhs, native_rounding_tag>, op_value<Rhs, RhsTag>>
57 : custom_operator<Operator, op_value<Lhs>, op_value<Rhs>> {
60 template<_impl::prefix_op Operator,
typename Rhs>
61 struct custom_operator<Operator, native_rounding_tag, Rhs>
62 : custom_operator<Operator, op_value<Rhs, _impl::native_tag>> {
65 template<_impl::postfix_op Operator,
typename Rhs>
66 struct custom_operator<Operator, native_rounding_tag, Rhs>
67 : custom_operator<Operator, op_value<Rhs, _impl::native_tag>> {
71 #endif // CNL_IMPL_ROUNDING_NATIVE_ROUNDING_TAG_H