constexpr const_iterator cbegin() const noexcept;
概要
先頭の要素を指す読み取り専用イテレータを取得する。
戻り値
!empty()
である場合、data()
を指すイテレータを返す。そうでない場合、[cbegin(), cend())
を妥当な範囲とする未規定の値を返す。
例
#include <iostream>
#include <string_view>
#include <algorithm>
int main()
{
std::string_view sv = "Hello";
std::for_each(sv.cbegin(), sv.cend(), [](char c) {
std::cout << c << std::endl;
});
}
13
#include <iostream>
#include <string_view>
#include <algorithm>
int main()
{
std::string_view sv = "Hello";
std::for_each(sv.cbegin(), sv.cend(), [](char c) {
std::cout << c << std::endl;
});
}
出力
H
e
l
l
o
バージョン
言語
- C++17
処理系
- Clang: 4.0 ✅
- GCC: 7.1 ✅
- ICC: ??
- Visual C++: ??