std::begin
Da cppreference.com.
|
|
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
<metanoindex/>
<tbody> </tbody>| Elemento definito nell'header <iterator>
|
||
template< class C > auto begin( C& c ) -> decltype(c.begin()); |
(1) | (dal C++11) |
template< class C > auto begin( const C& c ) -> decltype(c.begin()); |
(2) | (dal C++11) |
template< class T, size_t N > T* begin( T (&array)[N] ); |
(3) | (dal C++11) |
Restituisce un iteratore all'inizio del
c contenitore dato o array 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.
Parametri
| c | - | un contenitore con un metodo
beginOriginal: a container with a begin methodThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| array | - | una matrice di tipo arbitrario |