std::end(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*/ end( valarray<T>& v ); |
(1) | (dal C++11) |
template< class T > /*unspecified2*/ end( const valarray<T>& v ); |
(2) | (dal C++11) |
La specializzazione di std::begin per
valarray
restituisce un iteratore di tipo non specificato riferimento a quello passato, l'ultimo elemento della matrice numerica. Original:
The specialization of std::begin for
valarray
returns an iterator of unspecified type referring to the one past the last 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 a uno oltre l'ultimo valore nella matrice numerica.
Original:
Iterator to one past the last 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::begin Original: specializes std::begin 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) |