std::ranges:: subrange_kind
From cppreference.net
C++
Ranges library
|
||||||||||||||||||||||
| Range primitives | |||||||
|
|||||||
| Range concepts | |||||||||||||||||||
|
|||||||||||||||||||
| Range factories | |||||||||
|
|||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||
| Helper items | |||||||||||||||||
|
|
||||||||||||||||
std::ranges::subrange
|
ヘッダーで定義
<ranges>
|
||
|
enum
class
subrange_kind
:
bool
{
unsized,
|
(C++20以降) | |
std::ranges::subrange が std::ranges::sized_range をモデル化するかどうかを指定します。
定数
| 列挙子 | 意味 |
unsized
|
subrange
が
sized_range
をモデル化しないことを指定
|
sized
|
subrange
が
sized_range
をモデル化することを指定
|