CNL  2.0.2 (development)
Compositional Numeric Library
homogeneous_operator_tag_base.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_OPERATORS_IS_HOMOGENEOUS_OPERATOR_TAG_H)
8 #define CNL_IMPL_OPERATORS_IS_HOMOGENEOUS_OPERATOR_TAG_H
9 
10 #include "../config.h"
11 #include "definition.h"
12 #include "overloads.h"
13 
14 #include <type_traits>
15 
17 namespace cnl {
18  namespace _impl {
19  // a tag with unremarkable properties WRT operators,
20  // i.e. operations on numbers with this tag
21  // produce more numbers with the same tag
22  struct homogeneous_operator_tag_base {
23  };
24 
25  template<class Tag>
26  concept homogeneous_operator_tag = tag<Tag> && std::is_base_of_v<homogeneous_operator_tag_base, Tag>;
27 
28  // 'Boring' tags make use of the generic operator system.
29  // For example, when you add two `rounding_nearest_tag` numbers together,
30  // the result's tag is also `rounding_nearest_tag`.
31  // But when you add two `elastic_integer_tag<N>` numbers together,
32  // the result's tag is NOT also `elastic_integer_tag<N>`, <gosh>.
33  template<homogeneous_operator_tag Tag>
34  inline constexpr auto wants_generic_ops<Tag> = true;
35  }
36 
37  template<_impl::binary_arithmetic_op Operator, _impl::homogeneous_operator_tag Tag>
38  struct custom_operator<Operator, op_value<Tag>, op_value<Tag>> {
39  [[nodiscard]] constexpr auto operator()(Tag, Tag) const
40  {
41  return Tag{};
42  }
43  };
44 
45  template<_impl::comparison_op Operator, _impl::homogeneous_operator_tag Tag>
46  struct custom_operator<Operator, op_value<Tag>, op_value<Tag>> {
47  [[nodiscard]] constexpr auto operator()(Tag, Tag) const
48  {
49  return true;
50  }
51  };
52 }
53 
54 #endif // CNL_IMPL_OPERATORS_IS_HOMOGENEOUS_OPERATOR_TAG_H
cnl
compositional numeric library
Definition: abort.h:15