std::experimental::ranges::DefaultConstructible

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)

# See also