「cpp/container/unordered multimap/end」の版間の差分
提供: cppreference.com
< cpp | container | unordered multimap
細 (1版:Translate from the English version) |
細 (Use {{lc}}. Update links. Various fixes.) |
||
(1人の利用者による、間の1版が非表示) | |||
1行: | 1行: | ||
− | {{page | + | {{page|cpp/container/end|unordered_multimap}} |
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ |
2013年7月2日 (火) 12:43時点における最新版
iterator end() noexcept; |
(C++11以上) | |
const_iterator end() const noexcept; |
(C++11以上) | |
const_iterator cend() const noexcept; |
(C++11以上) | |
コンテナの最後の要素の次の要素を指すイテレータを返します。
この要素はプレースホルダとしての役割を持ちます。 この要素にアクセスを試みると未定義動作になります。
目次 |
[編集] 引数
(なし)
[編集] 戻り値
最後の要素の次の要素を指すイテレータ。
[編集] 計算量
一定。
[編集] 関連項目
先頭を指すイテレータを返します (パブリックメンバ関数) |