◐ Shell
clean mode source ↗

std::end(std::valarray) - cppreference.com

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.

Click here for the English version of this page

<metanoindex/>

<tbody> </tbody>

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.

1)

Il tipo restituito soddisfa i requisiti della mutevole RandomAccessIterator.

Original:

The text has been machine-translated via Google Translate.
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 text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

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.

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.

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.

Esempio

Vedi anche