std::unordered_multimap::end, std::unordered_multimap::cend
Материал из cppreference.com
< cpp | container | unordered multimap
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| iterator end(); |
(начиная с C++11) | |
| const_iterator end() const; |
(начиная с C++11) | |
| const_iterator cend() const; |
(начиная с C++11) | |
Возвращает итератор на элемент, следующий за последним элементом контейнера.
Original:
Returns an iterator to the element following the last element of the container.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Этот элемент выступает в качестве заполнителя; попытке доступа к нему приводит к неопределенному поведению.
Original:
This element acts as a placeholder; attempting to access it results in undefined behavior.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Содержание |
[править] Параметры
(Нет)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[править] Возвращаемое значение
итератор на элемент, следующий за последним элементом
Original:
iterator to the element following the last element
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[править] Исключения
[править] Сложность
Constant
Original:
Constant
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[править] См. также
| возвращает итератор на первый элемент (public функция-член) | |