constexpr const_reverse_iterator crbegin() const noexcept;
概要
末尾を指す読み取り専用逆イテレータを取得する。
戻り値
return const_reverse_iterator(end());
例
#include <iostream>
#include <string_view>
#include <algorithm>
int main()
{
std::string_view sv = "Hello";
std::for_each(sv.crbegin(), sv.crend(), [](char c) {
std::cout << c << std::endl;
});
}
xxxxxxxxxx
#include <iostream>
#include <string_view>
#include <algorithm>
int main()
{
std::string_view sv = "Hello";
std::for_each(sv.crbegin(), sv.crend(), [](char c) {
std::cout << c << std::endl;
});
}
出力
o
l
l
e
H
バージョン
言語
- C++17
処理系
- Clang: 4.0 ✅
- GCC: 7.1 ✅
- ICC: ??
- Visual C++: ??