class template
std::ranges::adjacent_view(C++23)
namespace std::ranges {
template<forward_range V, size_t N>
requires view<V> && (N > 0)
class adjacent_view : public view_interface<adjacent_view<V, N>> {…… }; // (1)
namespace views {
template<std::size_t N>
inline constexpr /*unspecified*/ adjacent = /*unspecified*/; // (2)
inline constexpr auto pairwise = adjacent<2>; // (3)
}
}
概要
adjacent_view
は各要素とそれに隣接する要素をコンパイル時指定の個数ずつ取り出したtuple
を要素とするview
。
adjacent_view
の要素を1つ取得するごとに、V
の要素を N
個取得する。
N
が元となるRangeの要素数より大きい場合、このview
は空である。
Rangeコンセプト
borrowed |
sized |
output |
input |
forward |
bidirectional |
random_access |
contiguous |
common |
viewable |
view |
|
(1) |
〇 |
〇 |
(1) |
(1) |
(1) |
|
(1) |
○ |
○ |
効果
- (2): 式
views::adjacent<N>(E)
の効果は次の通り
メンバ関数
名前 |
説明 |
対応バージョン |
(constructor) |
コンストラクタ |
C++23 |
base |
V の参照を取得する |
C++23 |
begin |
先頭を指すイテレータを取得する |
C++23 |
end |
番兵を取得する |
C++23 |
size |
要素数を取得する |
C++23 |
継承しているメンバ関数
推論補助
名前 |
説明 |
対応バージョン |
(deduction_guide) |
クラステンプレートの推論補助 |
C++23 |
例
#include <ranges>
#include <vector>
#include <print>
int main() {
std::vector v = {1, 2, 3, 4, 5, 6};
std::println("{}", v | std::views::adjacent<0>);
std::println("{}", v | std::views::adjacent<1>);
std::println("{}", v | std::views::adjacent<3>);
std::println("{}", v | std::views::adjacent<6>);
std::println("{}", v | std::views::adjacent<7>);
}
出力
[]
[(1), (2), (3), (4), (5), (6)]
[(1, 2, 3), (2, 3, 4), (3, 4, 5), (4, 5, 6)]
[(1, 2, 3, 4, 5, 6)]
[]
バージョン
言語
処理系
関連項目
参照