std::initializer_list::begin
Da cppreference.com
< cpp | utility | initializer list
![]() | 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. |
const T* begin()const; | (desde C++11) | |
Retorna um ponteiro para o primeiro elemento na lista de inicializador.
Original:
Returns a pointer to the first 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.
You can help to correct and verify the translation. Click here for instructions.
Se a lista está vazia inicializador, os valores de std::initializer_list::beginstd::initializer_list::end e não são especificadas, mas serão idênticos.
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.
You can help to correct and verify the translation. Click here for instructions.
Índice |
[editar]Parâmetros
(Nenhum)
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.
[editar]Valor de retorno
um ponteiro para o primeiro elemento na lista de inicializador
Original:
a pointer to the first 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.
You can help to correct and verify the translation. Click here for instructions.
[editar]Exceções
[editar]Complexidade
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.
You can help to correct and verify the translation. Click here for instructions.
[editar]Veja também
retorna um ponteiro para um após o último elemento Original: returns a pointer to one past the last element The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (função pública membro) |