VCCC  2024.05
VisualCamp Common C++ library
signed_integral.hpp
Go to the documentation of this file.
1 //
2 // Created by yonggyulee on 2023/12/25.
3 //
4 
5 #ifndef VCCC_CONCEPTS_SIGNED_INTEGRAL_HPP_
6 #define VCCC_CONCEPTS_SIGNED_INTEGRAL_HPP_
7 
8 #include <type_traits>
9 
11 
12 namespace vccc {
13 
16 
29 template<typename T>
30 struct signed_integral : conjunction<std::is_integral<T>, std::is_signed<T>> {};
31 
33 
34 } // namespace vccc
35 
36 #endif // VCCC_CONCEPTS_SIGNED_INTEGRAL_HPP_
Definition: directory.h:12