std::ranges::subrange_kind - cppreference.com
From cppreference.com
|
|
(since C++20) | |
Specifies if a std::ranges::subrange models std::ranges::sized_range or not.
Constants
| Enumerator | Meaning |
unsized
|
specifies that the subrange does not model sized_range
|
sized
|
specifies that the subrange does model sized_range
|