CNL  2.0.2 (development)
Compositional Numeric Library
is_rounding_tag.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_ROUNDING_IS_ROUNDING_TAG_H)
8 #define CNL_IMPL_ROUNDING_IS_ROUNDING_TAG_H
9 
10 #include "../custom_operator/is_same_tag_family.h"
11 
12 #include <type_traits>
13 
15 namespace cnl {
16  namespace _impl {
18  // cnl::_impl::is_rounding_tag
19 
20  template<typename Tag>
21  struct is_rounding_tag : std::false_type {
22  };
23  }
24 
25  template<class T>
26  concept rounding_tag = _impl::is_rounding_tag<T>::value;
27 
28  namespace _impl
29  {
30  template<rounding_tag Tag1, rounding_tag Tag2>
31  struct is_same_tag_family<Tag1, Tag2>
32  : std::true_type {
33  };
34  }
35 }
36 
37 #endif // CNL_IMPL_ROUNDING_IS_ROUNDING_TAG_H
std::false_type
cnl
compositional numeric library
Definition: abort.h:15