My Project
is_trivially_constructible.hpp
Go to the documentation of this file.
1 
28 #ifndef BSL_IS_TRIVIALLY_CONSTRUCTIBLE_HPP
29 #define BSL_IS_TRIVIALLY_CONSTRUCTIBLE_HPP
30 
31 #include "bool_constant.hpp"
32 
33 namespace bsl
34 {
46  template<typename T, typename... Args>
47  class is_trivially_constructible final : // --
48  public bool_constant<__is_trivially_constructible(T, Args...)>
49  {};
50 }
51 
52 #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 trivially constructible, provides the member constant value equal to true....
Definition: is_trivially_constructible.hpp:47