VCCC  2024.05
VisualCamp Common C++ library
floating_point.hpp
Go to the documentation of this file.
1 //
2 // Created by yonggyulee on 2023/12/27.
3 //
4 
5 #ifndef VCCC_CONCEPTS_FLOATING_POINT_HPP
6 #define VCCC_CONCEPTS_FLOATING_POINT_HPP
7 
8 #include <type_traits>
9 
10 namespace vccc {
11 
14 
27 template<typename T>
28 struct floating_point : std::is_floating_point<T> {};
29 
31 
32 } // namespace vccc
33 
34 #endif // VCCC_CONCEPTS_FLOATING_POINT_HPP
Definition: directory.h:12