std::experimental::ranges::Constructible - cppreference.com (original) (raw)

The Constructible concept specifies that a variable of type T can be initialized with the given set of argument types Args....

There need not be any subsumption relationship between Constructible<T, Args...> and std::is_constructible<T, Args...>::value.

[edit] See also