std::begin(std::valarray)
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. |
template< class T > /*unspecified1*/ begin( valarray<T>& v ); |
(1) | (dal C++11) |
template< class T > /*unspecified2*/ begin( const valarray<T>& v ); |
(2) | (dal C++11) |
La specializzazione di std::begin per
valarray
restituisce un iteratore di tipo non specificato riferimento al primo elemento della matrice numerica. Original:
The specialization of std::begin for
valarray
returns an iterator of unspecified type referring to the first element in the numeric 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.
1)
Il tipo restituito soddisfa i requisiti della mutevole
RandomAccessIterator
.Original:
The return type meets the requirements of mutable
RandomAccessIterator
.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.
2)
Il tipo restituito è conforme ai requisiti di
RandomAccessIterator
costante.Original:
The return type meets the requirements of constant
RandomAccessIterator
.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.
Indice |
[modifica] Parametri
v | - | una matrice numerica
Original: a numeric array The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifica] Valore di ritorno
Iterator per il primo valore della matrice numerica.
Original:
Iterator to the first value in the numeric 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.
[modifica] Eccezioni
(Nessuno)
Original:
(none)
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.
[modifica] Esempio
This section is incomplete Reason: no example |
[modifica] Vedi anche
(C++11) |
specializzata std::end Original: specializes std::end The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione di modello) |