namespace std::ranges {
inline namespace /*unspecified*/ {
inline constexpr /*unspecified*/ cend = /*unspecified*/;
}
}
概要
Rangeから、最後尾要素の次を指す読み取り専用イテレータもしくは番兵を取得する関数オブジェクト。
効果
部分式E
の型をT
、E
の評価結果オブジェクトを示す左辺値をt
とする。このとき、式ranges::cend(E)
の効果は以下の式と等しい。
- C++20まで
E
がlvalueであれば、ranges::end(static_cast<const T&>(E))
- それ以外の場合、
ranges::end(static_cast<const T&&>(E))
- C++23から
E
が右辺値であり、enable_borrowed_range<remove_cv_t<T>>
がfalse
となる場合、ranges::cend(E)
は不適格- それ以外の場合、式
U
をranges::end(possibly-const-range(t))
とすると、const_sentinel<decltype(U)>(U)
戻り値
最後尾要素の次を指す読み取り専用イテレータもしくは番兵。
カスタマイゼーションポイント
Rangeがconst
な場合についてranges::end
をカスタマイズすることで、ranges::cend
をカスタマイズできる。
備考
ranges::cend(E)
が有効な式であるとき、ranges::cend(E)
の型S
、ranges::cbegin(E)
の型I
はsentinel_for<S, I>
のモデルである。C++23以降はさらに、S
がinput_iterator
のモデルならばS
はconstant-iterator
のモデルである。
例
#include <iostream>
#include <vector>
#include <ranges>
#include <algorithm>
int main()
{
std::vector<int> v = {1, 2, 3};
decltype(v)::const_iterator first = std::ranges::cbegin(v);
decltype(v)::const_iterator last = std::ranges::cend(v);
std::for_each(first, last, [](const int& x) {
std::cout << x << std::endl;
});
}
xxxxxxxxxx
#include <iostream>
#include <vector>
#include <ranges>
#include <algorithm>
int main()
{
std::vector<int> v = {1, 2, 3};
decltype(v)::const_iterator first = std::ranges::cbegin(v);
decltype(v)::const_iterator last = std::ranges::cend(v);
std::for_each(first, last, [](const int& x) {
std::cout << x << std::endl;
});
}
出力
1
2
3
バージョン
言語
- C++20
処理系
- Clang: 13.0.0 ✅
- GCC: 10.1.0 ✅
- ICC: ?
- Visual C++: 2019 Update 10 ✅