other versions
    
    - Tumbleweed 2024.07.05-1.3
 - Leap-16.0
 - Leap-15.6
 
| std::experimental::ranges::Semiregular(3) | C++ Standard Libary | std::experimental::ranges::Semiregular(3) | 
NAME¶
std::experimental::ranges::Semiregular - std::experimental::ranges::Semiregular
Synopsis¶
 Defined in header <experimental/ranges/concepts>
  
   template< class T > (ranges TS)
  
   concept bool Semiregular = Copyable<T> &&
    DefaultConstructible<T>;
  
   The Semiregular concept specifies that a type is both copyable and default
  
   constructible. It is satisfied by types that behave similarly to built-in
    types like
  
   int, except that they need not support comparison with ==.
| 2024.06.10 | http://cppreference.com |