std::ranges::subrange_kind

From cppreference.com
< cpp‎ | ranges
 
 
Ranges library
Range access
Range conversions
(C++23)
Range primitives



Dangling iterator handling
Range concepts
Views

Range factories
Range adaptors
Range generators
Range adaptor objects
Range adaptor closure objects
Helper items
(until C++23)(C++23)


 
std::ranges::subrange
Member functions
Observers
Iterator operations
Deduction guides
Non-member functions
(C++20)
Helper types
subrange_kind
(C++20)
(C++20)
 
Defined in header <ranges>
enum class subrange_kind : bool {

    unsized,
    sized

};
(since C++20)

Specifies if a std::ranges::subrange models std::ranges::sized_range or not.

Constant Explanation
unsized specifies that the subrange does not model sized_range
sized specifies that the subrange does model sized_range