Varianti

std::begin

Da cppreference.com.

<metanoindex/>

 
 
Biblioteca Iterator
Primitive iteratori
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.
iterator_traits
input_iterator_tag
output_iterator_tag
forward_iterator_tag
bidirectional_iterator_tag
random_access_iterator_tag
iterator
Adattatori iteratori
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.
reverse_iterator
Flusso iteratori
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.
istream_iterator
ostream_iterator
istreambuf_iterator
ostreambuf_iterator
Operazioni di iteratori
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.
advance
distance
prev(C++11)
next(C++11)
Intervallo accesso
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.
begin(C++11)
end(C++11)
 
<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.

Parametri

c -
un contenitore con un metodo begin
Original:
a container with a begin method
The 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