std::unordered_set::begin(int), std::unordered_set::cbegin(int)
Da cppreference.com.
< cpp | container | unordered set
![]() | Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate. La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
iterator begin( size_type n ); | (dal C++11) | |
const_iterator begin( size_type n )const; | (dal C++11) | |
const_iterator cbegin( size_type n )const; | (dal C++11) | |
Returns an iterator to the first element of the bucket with index pos
.
Indice |
[modifica]Parametri
n | - | l'indice della benna per accedere Original: the index of the bucket to access The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifica]Valore di ritorno
iteratore al primo elemento
Original:
iterator to 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.
You can help to correct and verify the translation. Click here for instructions.
[modifica]Complessità
Constant
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.
[modifica]Vedi anche
ritorna un iteratore alla fine della benna specificato Original: returns an iterator to the end of the specified bucket The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (metodo pubblico) |