const_iterator cbegin() const noexcept;
概要
先頭の要素を指す読み取り専用イテレータを取得する。
戻り値
return begin();
例外
投げない
例
#include <iostream>
#include <chrono>
namespace chrono = std::chrono;
int main()
{
const chrono::tzdb_list& ls = chrono::get_tzdb_list();
int n = std::distance(ls.cbegin(), ls.cend());
std::cout << n << std::endl;
for (const chrono::tzdb& tzdb : ls) {
std::cout << tzdb.version << std::endl;
}
}
出力例
1
2019c
バージョン
言語
- C++20
処理系
- Clang: 9.0 ❌
- GCC: 9.2 ❌
- Visual C++: 2019 Update 3 ❌