std::basic_const_iterator<Iter>::operator constant-iterator
来自 cppreference.com
< cpp | iterator | basic const iterator
template< /*not-a-const-iterator*/ CI > requires /*constant-iterator*/<CI> && |
(1) | (自 C++23 起) |
template< /*not-a-const-iterator*/ CI > requires /*constant-iterator*/<CI> && |
(2) | (自 C++23 起) |
返回一个转换后的常量迭代器,底层迭代器 current 可以显式或隐式转换为该迭代器。
CI 满足仅供说明的概念 /*not-a-const-iterator*/ 当且仅当它不是 basic_const_iterator
的特化。
[编辑] 返回值
1)
current
2) std::move(
current
)[编辑] 示例
运行这段代码
#include <iterator> #include <ranges> #include <vector> void foo(std::vector<int>::const_iterator) {} int main() { auto v = std::vector<int>(); { // ranges::cbegin below returns vector<int>::const_iterator auto i1 = std::ranges::cbegin(v); foo(i1); // okay } auto t = v | std::views::take_while([](int const x) { return x < 100; }); { // ranges::cbegin below returns basic_const_iterator<vector<int>::iterator> auto i2 = std::ranges::cbegin(t); foo(i2); // error until P2836R1 } }
[编辑] 缺陷报告
以下行为变更的缺陷报告已追溯应用到之前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确的行为 |
---|---|---|---|
P2836R1 | C++23 | basic_const_iterator 不遵循其底层类型的可转换性 |
提供转换运算符 |