std::end(std::valarray) — cppreference.com
De cppreference.com
<metanoindex/>
<tbody> </tbody>
|
|
(1) | (depuis C++11) |
|
|
(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 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 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. |
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. (fonction générique) [edit] | |