CNL  2.0.2 (development)
Compositional Numeric Library
arithmetic.h
1 
2 // Copyright John McFarlane 2021.
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_ARITHMETIC_H)
8 #define CNL_ARITHMETIC_H
9 
10 #include "_impl/custom_operator/tag.h"
11 #include "number.h"
12 
13 #include <type_traits>
14 
16 namespace cnl {
17  template<typename T>
18  inline constexpr auto is_arithmetic_v = is_number_v<T> || is_tag<T>;
19 
20  template<typename T>
21  concept arithmetic = is_arithmetic_v<T>;
22 }
23 
24 #endif // CNL_ARITHMETIC_H
cnl
compositional numeric library
Definition: abort.h:15