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) |
访问元素 (公开成员函数) |