std::ranges::chunk_view<V>::iterator<Const>::operator[]
来自 cppreference.com
< cpp | ranges | chunk view | iterator
constexpr value_type operator[]( difference_type pos ) const requires ranges::random_access_range<Base>; |
(自 C++23 起) | |
返回指定相对位置的元素。
等效于: return *(*this + pos);.
内容 |
[编辑] 参数
pos | - | 相对于当前位置的位置 |
[编辑] 返回值
相对于当前位置的位移 pos 处的元素(类型为 value_type
)。
[编辑] 示例
本节不完整 原因:没有示例 |
[编辑] 另请参阅
(C++23) |
访问元素 (公共成员函数) |