std::flat_map<Key,T,Compare,KeyContainer,MappedContainer>::begin、std::flat_map<Key,T,Compare,KeyContainer,MappedContainer>::cbegin
From cppreference.com
| iterator begin() noexcept; |
(1) | (C++23から) |
| const_iterator begin() const noexcept; |
(2) | (C++23から) |
| const_iterator cbegin() const noexcept; |
(3) | (C++23から) |
flat_mapの最初の要素へのイテレータを返します。
flat_mapが空の場合、返されるイテレータはend()と等しくなります。
目次 |
[編集] 戻り値
最初の要素へのイテレータ。
[編集] 計算量
定数。
[編集] 例
このコードを実行
#include <iostream> #include <flat_map> int main() { std::flat_map<int, double> map{{4, 4.13}, {9, 9.24}, {1, 1.09}}; for (auto it = map.cbegin(); it != map.cend(); ++it) std::cout << '[' << it->first << "] = " << it->second << '\n'; // Unlike std::map's bidirectional iterators, the std::flat_map iterators // are random-access, so they can be used with the operator[]: auto it = map.cbegin(); assert(it[0] == map[1]); assert(it[1] == map[4]); assert(it[2] == map[9]); }
出力
[1] = 1.09 [4] = 4.13 [9] = 9.24
[編集] 関連項目
| 末尾へのイテレータを返す (public メンバ関数) | |
| (C++11)(C++14) |
コンテナまたは配列の先頭を指すイテレータを返す (関数テンプレート) |