16 template<
class T,
class... Args>
struct is_constructible_from : std::conjunction<std::is_destructible<T>, std::is_constructible<T, Args...>> {};
22 template<
class T,
class... Args>
Definition is_constructible_from.hpp:23
Definition Partitioner.hpp:146
bool constexpr is_constructible_from_v
A C++17 type trait equivalent to the C++20 constructible_from concept.
Definition is_constructible_from.hpp:19
A C++17 type trait equivalent to the C++20 constructible_from concept.
Definition is_constructible_from.hpp:16