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