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 不是 basic_const_iterator
的特化时,CI 满足仅用于阐释的概念 /*not-a-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 返回 vector<int>::const_iterator auto i1 = std::ranges::cbegin(v); foo(i1); // OK } auto t = v | std::views::take_while([](int const x) { return x < 100; }); { // 下面的 ranges::cbegin 返回 basic_const_iterator<vector<int>::iterator> auto i2 = std::ranges::cbegin(t); foo(i2); // P2836R1 前报错 } }
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
P2836R1 | C++23 | basic_const_iterator 不遵守其底层类型的可转换性
|
提供转换运算符 |