5 #ifndef VCCC_TYPE_TRAITS_IS_IMPLICITLY_CONSTRUCTIBLE_HPP
6 #define VCCC_TYPE_TRAITS_IS_IMPLICITLY_CONSTRUCTIBLE_HPP
18 template<
typename T,
typename... Args>
21 std::is_constructible<T, Args...>,
22 std::is_convertible<Args..., T>
25 template<
typename T,
typename... Args>
typename is_implicitly_constructible< T, Args... >::type is_implicitly_constructible_t
Definition: is_implicitly_constructible.hpp:26
Definition: directory.h:12
Definition: conjunction.hpp:22
Definition: is_implicitly_constructible.hpp:23