命名空间
变体
操作

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

来自 cppreference.com
< cpp‎ | ranges‎ | adjacent view‎ | iterator
 
 
范围库
范围适配器
 
 
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});
}