std::ranges::transform_view<V,F>::iterator<Const>::base
来自 cppreference.com
< cpp | ranges | transform view | iterator
constexpr const ranges::iterator_t<Base>& base() const & noexcept; |
(1) | (自 C++20) |
constexpr ranges::iterator_t<Base> base() &&; |
(2) | (自 C++20) |
返回底层迭代器。
1) 返回对底层迭代器的引用。
2) 从底层迭代器移动构造结果。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
1) 对底层迭代器的引用。
2) 从底层迭代器移动构造的迭代器。
[编辑] 示例
运行此代码
#include <algorithm> #include <iostream> #include <iterator> #include <ranges> int main() { const auto v = { 0, 1, 2, 3, 4 }; auto x2 = [](int x) { return x << 1; }; std::ranges::transform_view tv{ v, x2 }; std::ostream_iterator<int> ostr{ std::cout, " " }; std::ranges::copy(v, ostr), std::cout << '\n'; std::ranges::copy(tv.base(), ostr), std::cout << '\n'; std::ranges::copy(tv, ostr), std::cout << '\n'; }
输出
0 1 2 3 4 0 1 2 3 4 0 2 4 6 8
[编辑] 缺陷报告
以下行为更改的缺陷报告被追溯应用到以前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 3533 | C++20 | the const& overload of base returns a copy of the underlying iterator |
返回引用 |
LWG 3593 | C++20 | the const& overload of base might not be noexcept |
设为 noexcept |