VCCC  2024.05
VisualCamp Common C++ library
same_as.hpp
Go to the documentation of this file.
1 //
2 // Created by cosge on 2023-12-02.
3 //
4 
5 #ifndef VCCC_CONCEPTS_SAME_AS_HPP_
6 #define VCCC_CONCEPTS_SAME_AS_HPP_
7 
8 #include <type_traits>
9 
10 namespace vccc {
11 
32 template<typename T, typename U>
33 struct same_as : std::is_same<T, U> {};
34 
37 
38 } // namespace vccc
39 
40 #endif // VCCC_CONCEPTS_SAME_AS_HPP_
Definition: directory.h:12
Models std::same_as
Definition: same_as.hpp:33