命名空间
变体
操作

std::ranges::transform_view<V,F>::iterator<Const>::operator[]

来自 cppreference.com
 
 
范围库
范围适配器
 
 
constexpr decltype(auto) operator[]( difference_type n ) const
  requires ranges::random_access_range<Base>;
(自 C++20 起)

返回指定相对位置的元素,经过转换后。

实际上返回 std::invoke(*parent_->fun_, current_[n]), 其中 *parent_->fun_ 是父 transform_view 中存储的转换函数,current_ 是指向 V 的底层迭代器。

[编辑] 参数

n - 相对于当前位置的位置。

[编辑] 返回值

转换后的元素

[编辑] 示例