std::begin
Da 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. |
Definido no cabeçalho <iterator>
|
||
template< class C > auto begin( C& c ) -> decltype(c.begin()); |
(1) | (desde C++11) |
template< class C > auto begin( const C& c ) -> decltype(c.begin()); |
(2) | (desde C++11) |
template< class T, size_t N > T* begin( T (&array)[N] ); |
(3) | (desde C++11) |
Retorna um iterador para o início do
c
determinado recipiente ou matriz array
.Original:
Returns an iterator to the beginning 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.
Índice |