Espaces de noms
Variantes

std::end(std::valarray)

De cppreference.com

<metanoindex/>

 
 
Bibliothèque Numerics
Fonctions mathématiques courantes
Virgule flottante environnement
Nombres complexes
Tableaux numériques
La génération de nombres pseudo-aléatoires
Moment de la compilation arithmétique rationnelle (C++11)
Génériques des opérations numériques
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
 
 
<tbody> </tbody>
template< class T > /*unspecified1*/ end( valarray<T>& v );
(1) (depuis C++11)
template< class T > /*unspecified2*/ end( const valarray<T>& v );
(2) (depuis C++11)
La spécialisation des std::begin pour valarray renvoie un itérateur de type non spécifié référence à celui-delà du dernier élément dans le tableau numérique .
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)
Le type de retour est conforme aux exigences de mutable 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)
Le type de retour est conforme aux exigences de RandomAccessIterator constante .
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.

Paramètres

v -
un tableau numérique
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.

Retourne la valeur

Iterator à un passé l' dernière valeur dans le tableau numérique .
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.

Exceptions

(Aucun)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Exemple

Voir aussi

std::begin spécialisée
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.

(fonction générique) [edit]