Espaces de noms
Variantes

std::initializer_list::end

De cppreference.com

<metanoindex/>

 
 
 
std::initializer_list
Les fonctions membres
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
initializer_list::initializer_list
Capacité
Original:
Capacity
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
initializer_list::size
Les itérateurs
Original:
Iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
initializer_list::begin
initializer_list::end
Tiers fonctions
Original:
Non-member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
std::begin
std::end
 
<tbody> </tbody>
const T* end() const;
(depuis C++11)
Retourne un pointeur vers un passé le dernier élément de la liste d'initialisation, c'est à dire begin() + size() .
Original:
Returns a pointer to one past the last element in the initializer list, i.e. begin() + size().
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Si la liste d'initialisation est vide, les valeurs de std::initializer_list::begin et std::initializer_list::end ne sont pas précisés, mais sera identique .
Original:
If the initializer list is empty, the values of std::initializer_list::begin and std::initializer_list::end are unspecified, but will be identical.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Paramètres

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

Retourne la valeur

un pointeur vers un passé le dernier élément de la liste d'initialisation
Original:
a pointer to one past the last element in the initializer list
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Exceptions

noexcept specification:  
<tbody> </tbody>
noexcept
   (depuis C++11)

Complexité

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

Voir aussi

renvoie un pointeur du premier élément
Original:
returns a pointer the first element
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction membre publique) [edit]