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