std::end
De cppreference.com
|
|
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. |
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <iterator>
|
||
template< class C > auto end( C& c ) -> decltype(c.end()); |
(1) | (desde C++11) |
template< class C > auto end( const C& c ) -> decltype(c.end()); |
(2) | (desde C++11) |
template< class T, size_t N > T* end( T (&array)[N] ); |
(3) | (desde C++11) |
Retorna um iterador para o final (ou seja, o elemento após o último elemento) do
c determinado contêiner ou matriz array.Original:
Returns an iterator to the end (i.e. the element after the last element) of the given container
c or array array.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.