CNL  2.0.2 (development)
Compositional Numeric Library
native_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_OPERATORS_NATIVE_TAG_H)
8 #define CNL_IMPL_OPERATORS_NATIVE_TAG_H
9 
10 #include "../../constant.h"
11 #include "../numbers/set_signedness.h"
12 #include "definition.h"
13 #include "homogeneous_deduction_tag_base.h"
14 #include "homogeneous_operator_tag_base.h"
15 #include "op.h"
16 
17 #include <concepts>
18 #include <type_traits>
19 
21 namespace cnl {
22  namespace _impl {
23  // match the behavior of fundamental arithmetic types
24  struct native_tag
25  : homogeneous_deduction_tag_base
26  , homogeneous_operator_tag_base {
27  using identity = native_tag;
28  };
29 
30  // true iff given type, T, provides its own operators
31  template<typename T>
32  struct has_native_operators
34  bool, is_constant<T>::value || std::is_integral_v<T> || std::is_floating_point<T>::value> {
35  };
36  }
37 
38  template<>
39  inline constexpr auto is_tag<_impl::native_tag> = true;
40 
41  template<typename Source, typename Destination>
42  struct custom_operator<_impl::convert_op, op_value<Source>, op_value<Destination>> {
43  [[nodiscard]] constexpr auto operator()(Source const& from) const -> Destination
44  {
45  return _impl::convert_op{}.template operator()<Destination>(from);
46  }
47  };
48 
49  template<_impl::unary_arithmetic_op Operator, typename Rhs>
50  requires(_impl::has_native_operators<Rhs>::value) struct custom_operator<Operator, op_value<Rhs>> : Operator {
51  };
52 
53  template<_impl::binary_op Operator, typename Lhs, typename Rhs>
54  requires(_impl::has_native_operators<Lhs>::value&& _impl::has_native_operators<Rhs>::value) struct custom_operator<Operator, op_value<Lhs>, op_value<Rhs>> : Operator {
55  };
56 }
57 
58 #endif // CNL_IMPL_OPERATORS_NATIVE_TAG_H
std::integral_constant
op.h
operators represented as types
cnl
compositional numeric library
Definition: abort.h:15