CNL  2.0.2 (development)
Compositional Numeric Library
number.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_NUMBER_H)
8 #define CNL_NUMBER_H
9 
10 #include "fixed_point.h"
11 
12 #include <concepts>
13 #include <type_traits>
14 
16 namespace cnl {
17  template<typename T>
18  inline constexpr auto is_number_v = is_fixed_point_v<T> || std::is_floating_point_v<T>;
19 
20  template<typename T>
21  concept number = is_number_v<T>;
22 }
23 
24 #endif // CNL_NUMBER_H
cnl
compositional numeric library
Definition: abort.h:15