CNL  2.0.2 (development)
Compositional Numeric Library
type_traits.h
1 
2 // Copyright John McFarlane 2015 - 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 
9 
10 #if !defined(CNL_TYPE_TRAITS_H)
11 #define CNL_TYPE_TRAITS_H
12 
13 #include "_impl/type_traits/common_type.h"
14 #include "_impl/type_traits/remove_cvref.h"
15 
16 #include <type_traits>
17 
19 namespace cnl {
20  using _impl::common_type_t;
21 
22  using _impl::remove_cvref_t;
23 
24  using std::type_identity;
25  using std::type_identity_t;
26 }
27 
28 #endif // CNL_TYPE_TRAITS_H
cnl
compositional numeric library
Definition: abort.h:15