命名空间
变体
操作

std::ranges::zip_transform_view<F,Views...>::iterator<Const>::operator*

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

返回通过将类型为 F 的可调用对象应用于底层指向元素获得的转换元素。

等效于

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

其中 *parent_->fun_ 是存储在父级 ranges::zip_transform_view 中的转换函数,current_ 是底层迭代器元组到 Views...

内容

[编辑] 参数

(无)

[编辑] 返回值

转换(映射)的结果元素。

[编辑] 异常

noexcept 规范:  
noexcept(std::invoke(*parent_->fun_, *std::get<INTS>(inner_.current_)...))
其中 INTS 是整数包 0, 1, ..., (sizeof...(Views)-1)

[编辑] 注释

operator-> 未提供。

如果指向父级 ranges::zip_transform_viewparent_ 指针为空(例如,如果 *this 是默认构造的),则行为未定义。

[编辑] 示例