VCCC  2024.05
VisualCamp Common C++ library
convertible_to.hpp
Go to the documentation of this file.
1 //
2 // Created by cosge on 2023-12-02.
3 //
4 
5 #ifndef VCCC_CONCEPTS_CONVERTIBLE_TO_HPP_
6 #define VCCC_CONCEPTS_CONVERTIBLE_TO_HPP_
7 
8 #include <type_traits>
9 
12 
13 namespace vccc {
14 
33 template<typename From, typename To>
36  std::is_convertible<From, To>,
37  is_explicitly_convertible<From, To>
38  > {};
39 
42 
43 
44 
45 } // namespace vccc
46 
47 #endif // VCCC_CONCEPTS_CONVERTIBLE_TO_HPP_
Definition: directory.h:12
Definition: conjunction.hpp:22
Models std::convertible_to
Definition: convertible_to.hpp:38