CNL  2.0.2 (development)
Compositional Numeric Library
native.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_OVERFLOW_NATIVE_H)
8 #define CNL_IMPL_OVERFLOW_NATIVE_H
9 
10 #include "../custom_operator/native_tag.h"
11 #include "../polarity.h"
12 #include "is_overflow_tag.h"
13 #include "is_tag.h"
14 #include "overflow_operator.h"
15 
17 namespace cnl {
26  : _impl::homogeneous_deduction_tag_base
27  , _impl::homogeneous_operator_tag_base {
28  };
29 
30  namespace _impl {
31  template<>
32  struct is_overflow_tag<native_overflow_tag> : std::true_type {
33  };
34 
35  template<typename Operator, polarity Polarity>
36  struct overflow_operator<Operator, native_overflow_tag, Polarity> : Operator {
37  };
38  }
39 }
40 
41 #endif // CNL_IMPL_OVERFLOW_NATIVE_H
std::true_type
cnl
compositional numeric library
Definition: abort.h:15
cnl::native_overflow_tag
tag to match the overflow behavior of fundamental arithmetic types
Definition: native.h:25