std::end(std::valarray)
De cppreference.com
[] |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<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 spcialisation des std::begin pour
valarray renvoie un itrateur de type non spcifi rfrence celui-del du dernier lment dans le tableau numrique . 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)
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.
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.
You can help to correct and verify the translation. Click here for instructions.
Paramtres
| v | - | un tableau numrique
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' dernire valeur dans le tableau numrique .
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.
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.
You can help to correct and verify the translation. Click here for instructions.
Exemple
| This section is incomplete Reason: no example |
Voir aussi
(C++11) |
std::begin spcialise 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 gnrique) |