std::experimental::ranges::Semiregular
来自 cppreference.cn
< cpp | experimental | ranges
template< class T > concept bool Semiregular = Copyable<T> && DefaultConstructible<T>; |
(ranges TS) | |
Semiregular
概念指定类型既可复制又可默认构造。它被行为类似于 int 等内置类型的类型满足,只是它们不需要支持与 ==
的比较。