std::ranges::transform_view<V,F>::iterator<Const>::operator[]
来自 cppreference.com
< cpp | ranges | transform view | iterator
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 | - | 相对于当前位置的位置。 |
[编辑] 返回值
转换后的元素
[编辑] 示例
本节尚未完善 原因:没有示例 |