My Project
is_copy_constructible.hpp
Go to the documentation of this file.
1 
28 #ifndef BSL_IS_COPY_CONSTRUCTIBLE_HPP
29 #define BSL_IS_COPY_CONSTRUCTIBLE_HPP
30 
31 #include "bool_constant.hpp"
32 #include "add_const.hpp"
33 #include "add_lvalue_reference.hpp"
34 
35 namespace bsl
36 {
48  template<typename T>
49  class is_copy_constructible final :
50  public bool_constant<__is_constructible(T, add_lvalue_reference_t<add_const_t<T>>)>
51  {};
52 }
53 
54 #endif
If the provided type is an array type (taking into account const qualifications), provides the member...
Definition: integral_constant.hpp:45
If the provided type is copy constructible, provides the member constant value equal to true....
Definition: is_copy_constructible.hpp:49