std::experimental::ranges::Constructible
Min standard notice:
Header: <experimental/ranges/concepts>
The Constructible concept specifies that a variable of type T can be initialized with the given set of argument types Args….
# Declarations
template< class T, class... Args >
concept bool Constructible =
Destructible<T> && std::is_constructible<T, Args...>::value;
(ranges TS)