Espaços nominais
Variantes
Ações

std::end

De cppreference.com

<metanoindex/>

 
 
Biblioteca Iterator
Primitivas iterador
Original:
Iterator primitives
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Adaptadores de iterador
Original:
Iterator adaptors
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Iteradores fluxo
Original:
Stream iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Operações iterador
Original:
Iterator operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
Variar de acesso
Original:
Range access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
 
<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.

Parâmetros