Espaços nominais
Variantes
Acções

std::multiset::emplace_hint

Da cppreference.com
< cpp‎ | container‎ | multiset

 
 
 
std::multiset
Funções de membro
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.
multiset::multiset
multiset::~multiset
multiset::operator=
multiset::get_allocator
Iteradores
Original:
Iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
multiset::begin
multiset::cbegin

(C++11)
multiset::end
multiset::cend

(C++11)
multiset::rbegin
multiset::crbegin

(C++11)
multiset::rend
multiset::crend

(C++11)
Capacidade
Original:
Capacity
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
multiset::empty
multiset::size
multiset::max_size
Modificadores
Original:
Modifiers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
multiset::clear
multiset::insert
multiset::emplace(C++11)
multiset::emplace_hint(C++11)
multiset::erase
multiset::swap
Pesquisa
Original:
Lookup
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
multiset::count
multiset::find
multiset::equal_range
multiset::lower_bound
multiset::upper_bound
Observadores
Original:
Observers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
multiset::key_comp
multiset::value_comp
 
template <class... Args>
iterator emplace_hint( const_iterator hint, Args&&... args );
(desde C++11)
Insere um novo elemento ao recipiente, utilizando-se como uma sugestão hint em que o elemento de ir. O elemento é construído no local, ou seja, nenhuma cópia ou operações de movimentação são executadas. The constructor of the element is called with exactly the same arguments as supplied to the function, forwarded with std::forward<Args>(args)....
Original:
Inserts a new element to the container, using hint as a suggestion where the element should go. The element is constructed in-place, i.e. no copy or move operations are performed. The constructor of the element is called with exactly the same arguments as supplied to the function, forwarded with std::forward<Args>(args)....
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

No iterators or references are invalidated.

Índice

[editar] Parâmetros

hint -
iterador, usado como uma sugestão para o local para inserir o novo elemento
Original:
iterator, used as a suggestion as to where to insert the new element
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
args -
argumentos para encaminhar para o construtor do elemento
Original:
arguments to forward to the constructor of the element
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Valor de retorno

Retorna um iterador para o elemento inserido.
Original:
Returns an iterator to the newly inserted element.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

None

[editar] Complexidade

Logarithmic in the size of the container in general, but amortized constant if the new element is inserted just before hint.

[editar] Veja também

(C++11)
constructs element in-place
(função pública membro) [edit]
insere elementos
Original:
inserts elements
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) [edit]