7 #if !defined(CNL_IMPL_ROUNDING_NEAREST_ROUNDING_TAG_H)
8 #define CNL_IMPL_ROUNDING_NEAREST_ROUNDING_TAG_H
10 #include "../custom_operator/definition.h"
11 #include "../custom_operator/native_tag.h"
12 #include "is_rounding_tag.h"
15 #include <type_traits>
27 : _impl::homogeneous_deduction_tag_base
28 , _impl::homogeneous_operator_tag_base {
37 template<_impl::unary_arithmetic_op Operator,
typename Operand>
38 struct custom_operator<Operator, op_value<Operand, nearest_rounding_tag>>
39 : custom_operator<Operator, op_value<Operand, _impl::native_tag>> {
42 template<_impl::binary_arithmetic_op Operator,
typename Lhs,
typename Rhs>
43 struct custom_operator<Operator, op_value<Lhs, nearest_rounding_tag>, op_value<Rhs, nearest_rounding_tag>>
47 template<
typename Lhs,
typename Rhs>
48 struct custom_operator<_impl::divide_op, op_value<Lhs, nearest_rounding_tag>, op_value<Rhs, nearest_rounding_tag>> {
49 [[nodiscard]] constexpr
auto operator()(Lhs
const& lhs, Rhs
const& rhs)
const
50 -> decltype(lhs / rhs)
52 return (((lhs < 0) ^ (rhs < 0)) ? lhs - (rhs / 2) : lhs + (rhs / 2)) / rhs;
56 template<_impl::shift_op Operator,
typename Lhs,
typename Rhs, tag RhsTag>
57 struct custom_operator<Operator, op_value<Lhs, nearest_rounding_tag>, op_value<Rhs, RhsTag>> : Operator {
60 template<_impl::prefix_op Operator,
typename Rhs>
61 struct custom_operator<Operator, op_value<Rhs, nearest_rounding_tag>> : Operator {
64 template<_impl::postfix_op Operator,
typename Lhs>
65 struct custom_operator<Operator, op_value<Lhs, nearest_rounding_tag>> : Operator {
69 #endif // CNL_IMPL_ROUNDING_NEAREST_ROUNDING_TAG_H