Namespace
Varianti

std::end(std::valarray)

Da cppreference.com.
< cpp‎ | numeric‎ | valarray

 
 
Numeri libreria
Comuni funzioni matematiche
Virgola mobile ambiente
I numeri complessi
Array numerici
Pseudo-casuale generazione
In fase di compilazione aritmetica razionale (C++11)
Generici operazioni numeriche
Original:
Generic numeric operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
iota(C++11)
accumulate
inner_product
adjacent_difference
partial_sum
 
 
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 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.
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.

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.

[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.

[modifica] Esempio

[modifica] Vedi anche

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) [modifica]