std::experimental::ranges::DefaultConstructible
Min standard notice:
Header: <experimental/ranges/concepts>
The DefaultConstructible concept provides a shorthand for the common case when the question is whether a type can be constructed with no arguments.
# Declarations
template< class T >
concept bool DefaultConstructible = Constructible<T>;
(ranges TS)