std::ranges::stride_view<V>::iterator<Const>::operator[]
来自 cppreference.com
< cpp | ranges | stride view | iterator
constexpr decltype(auto) operator[]( difference_type n ) const requires ranges::random_access_range<Base> |
(自 C++23 起) | |
返回指定相对位置处的元素。
等效于:return *(*this + n);.
内容 |
[编辑] 参数
n | - | 相对于当前位置的位置 |
[编辑] 返回值
相对于当前位置偏移 n 处的元素。
[编辑] 示例
运行此代码
#include <ranges> int main() { constexpr static auto v = {'a', 'b', 'c', 'd', 'e'}; constexpr auto view{v | std::views::stride(2)}; constexpr auto iter{view.begin() + 1}; static_assert(*iter == 'c'); static_assert(iter[0] == 'c'); static_assert(iter[1] == 'e'); }
[编辑] 另请参阅
(C++23) |
访问元素 (公共成员函数) |