std::multimap<Key,T,Compare,Allocator>::begin, std::multimap<Key,T,Compare,Allocator>::cbegin
提供: cppreference.com
iterator begin(); |
(C++11未満) | |
iterator begin() noexcept; |
(C++11以上) | |
const_iterator begin() const; |
(C++11未満) | |
const_iterator begin() const noexcept; |
(C++11以上) | |
const_iterator cbegin() const noexcept; |
(C++11以上) | |
コンテナの最初の要素を指すイテレータを返します。
コンテナが空の場合は、返されたイテレータは end() と等しくなります。
引数
(なし)
戻り値
最初の要素を指すイテレータ。
計算量
一定。
例
| This section is incomplete Reason: no example |
関連項目
| 終端を指すイテレータを返します (パブリックメンバ関数) |