命名空间
变体
操作

std::ranges::adjacent_transform_view<V,F,N>::iterator<Const>::operator*

来自 cppreference.com
 
 
范围库
范围适配器
 
 
constexpr decltype(auto) operator*() const noexcept(/* see below */);
(自 C++23 起)

返回 adjacent_transform_view 中的当前元素。

parent_inner_迭代器 的数据成员。等效于

return apply([&](const auto&... iters) -> decltype(auto)
             {
                 return invoke(*parent_->fun_, *iters...);
             },
             inner_.current_);

内容

[编辑] 参数

(无)

[编辑] 返回值

当前元素。

[编辑] 异常

Is 为包 0, 1, ..., (N - 1)

noexcept 规范:  
noexcept(std::invoke(*parent_->fun_, *std::get<Is>(inner_.current_)...))

[编辑] 示例

[编辑] 参见

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