CNL  2.0.2 (development)
Compositional Numeric Library
native_rounding_tag.h
1 
2 // Copyright John McFarlane 2018.
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_ROUNDING_NATIVE_ROUNDING_TAG_H)
8 #define CNL_IMPL_ROUNDING_NATIVE_ROUNDING_TAG_H
9 
10 #include "../custom_operator/native_tag.h"
11 #include "is_rounding_tag.h"
12 #include "is_tag.h"
13 
14 #include <type_traits>
15 
17 namespace cnl {
25  : _impl::homogeneous_deduction_tag_base
26  , _impl::homogeneous_operator_tag_base {
27  };
28 
29  namespace _impl {
30  template<>
31  struct is_rounding_tag<native_rounding_tag> : std::true_type {
32  };
33  }
34 
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>> {
38  };
39 
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>> {
43  };
44 
45  template<_impl::binary_arithmetic_op Operator, typename Lhs, typename Rhs>
46  struct custom_operator<
47  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>> {
51  };
52 
53  template<_impl::shift_op Operator, tag RhsTag, typename Lhs, typename Rhs>
54  struct custom_operator<
55  Operator,
56  op_value<Lhs, native_rounding_tag>, op_value<Rhs, RhsTag>>
57  : custom_operator<Operator, op_value<Lhs>, op_value<Rhs>> {
58  };
59 
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>> {
63  };
64 
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>> {
68  };
69 }
70 
71 #endif // CNL_IMPL_ROUNDING_NATIVE_ROUNDING_TAG_H
std::true_type
cnl::native_rounding_tag
tag to match the rounding behavior of fundamental arithmetic types
Definition: native_rounding_tag.h:24
cnl
compositional numeric library
Definition: abort.h:15