命名空间
变体
操作

std::ranges::stride_view<V>::iterator<Const>::operator*

来自 cppreference.com
< cpp‎ | ranges‎ | stride view‎ | iterator
 
 
范围库
范围适配器
 
 
constexpr decltype(auto) operator*() const;
(自 C++23)

返回基础迭代器指向的 V 中的元素。current_

等效于:return *current_;.

内容

[编辑] 参数

(无)

[编辑] 返回值

当前元素。

[编辑] 备注

operator-> 未提供。

[编辑] 示例

#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(*(view.begin() + 2) == 'e');
}

[编辑] 另请参阅

通过索引访问元素
(公有成员函数)