CNL  2.0.2 (development)
Compositional Numeric Library
set_rep.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_WRAPPER_SET_REP_H)
8 #define CNL_IMPL_WRAPPER_SET_REP_H
9 
10 #include "../num_traits/set_rep.h"
11 #include "definition.h"
12 #include "is_wrapper.h"
13 #include "tag_of.h"
14 
15 #include <type_traits>
16 
18 namespace cnl {
19  // when an _impl::wrapper wraps a non-_impl::wrapper
20  template<typename NumberRep, typename Rep>
21  struct set_rep<_impl::wrapper<NumberRep>, Rep> : std::type_identity<_impl::wrapper<Rep>> {
22  };
23 
24  // when one _impl::wrapper wraps a dissimilar _impl::wrapper
26  template<typename ArchetypeRep, class ArchetypeTag, _impl::any_wrapper Rep>
27  requires(!_impl::can_convert_tag_family<ArchetypeTag, _impl::tag_of_t<Rep>>::value) struct set_rep<_impl::wrapper<ArchetypeRep, ArchetypeTag>, Rep>
28  : std::type_identity<_impl::wrapper<Rep, ArchetypeTag>> {
29  };
30 
31  // when one _impl::wrapper is converted to a similar _impl::wrapper
32  template<typename ArchetypeRep, class ArchetypeTag, _impl::any_wrapper Rep>
33  requires(_impl::can_convert_tag_family<ArchetypeTag, _impl::tag_of_t<Rep>>::value) struct set_rep<_impl::wrapper<ArchetypeRep, ArchetypeTag>, Rep>
34  : std::type_identity<Rep> {
35  };
37 }
38 
39 #endif // CNL_IMPL_WRAPPER_SET_REP_H
cnl
compositional numeric library
Definition: abort.h:15