std::ranges::slide_view<V>::iterator<Const>::operator*
来自 cppreference.cn
< cpp | ranges | slide view | iterator
constexpr auto operator*() const; |
(since C++23) | |
返回 slide_view 中的当前元素。
设 current_
和 n_
为底层数据成员。等价于: return views::counted(current_, n_)。
目录 |
[编辑] 参数
(无)
[编辑] 返回值
当前元素,它是 value_type
类型的对象。
[编辑] 示例
本节尚不完整 原因:没有示例 |
[编辑] 参见
(C++23) |
通过索引访问元素 (公共成员函数) |