CNL  2.0.2 (development)
Compositional Numeric Library
homogeneous_deduction_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_DEDUCTION_TAG_H)
8 #define CNL_IMPL_OPERATORS_IS_HOMOGENEOUS_DEDUCTION_TAG_H
9 
10 #include "definition.h"
11 
12 #include <type_traits>
13 
15 namespace cnl {
16  namespace _impl {
17  // a tag with unremarkable properties WRT deduction,
18  // i.e. deduction from numbers with this tag
19  // produce more numbers with the same tag
20  struct homogeneous_deduction_tag_base {
21  };
22 
23  template<tag Tag>
24  struct is_homogeneous_deduction_tag : std::is_base_of<homogeneous_deduction_tag_base, Tag> {
25  };
26  }
27 
28  template<class ArchetypeTag, typename Initializer>
29  requires _impl::is_homogeneous_deduction_tag<ArchetypeTag>::value struct deduction<ArchetypeTag, Initializer> {
30  // tag associated with deduced type
31  using tag = ArchetypeTag;
32 
33  // deduced type; equivalent to rep type of a component
34  using type = Initializer;
35  };
36 }
37 
38 #endif // CNL_IMPL_OPERATORS_IS_HOMOGENEOUS_DEDUCTION_TAG_H
cnl
compositional numeric library
Definition: abort.h:15
std::is_base_of