std::ranges::adjacent_view<V,N>::iterator<Const>::operator[]

来自cppreference.com
< cpp‎ | ranges‎ | adjacent view‎ | iterator
 
 
范围库
范围访问
范围转换器
(C++23)
范围原语



悬垂迭代器处理
范围概念
视图

范围工厂
适配器
范围生成器
范围适配器对象
范围适配器闭包对象
辅助项
 
 
constexpr auto operator[]( difference_type n ) const
    requires ranges::random_access_range<Base>;
(C++23 起)

返回位于指定位置的元素。

current_ 为底层迭代器的数组。

等价于:

return __tuple_transform([&](auto& i) -> decltype(auto) { return i[n]; }, current_);

参数

n - 应用于当前位置的位移

返回值

相对于当前位置移动 n 位后的元素。

示例

#include <ranges>
#include <tuple>
 
int main()
{
    constexpr static auto v = {0, 1, 2, 3, 4, 5};
    //                               └──┬──┘  
    //                                  └─────────────────┐
    constexpr auto view = v | std::views::adjacent<3>; // │
    //                 ┌───────────────────┬──────────────┘ 
    //                 │                ┌──┴──┐
    static_assert(view[2] == std::tuple{2, 3, 4});
}