It returns an iterator to the newly inserted element.
DeclarationFollowing are the ways in which std::set::emplace_hint works in various C++ versions.
C++98template <class... Args> iterator emplace_hint (const_iterator position, Args&&... args);C++11
template <class... Args> iterator emplace_hint (const_iterator position, Args&&... args);Return value
It returns an iterator to the newly inserted element.
ExceptionsIf an exception is thrown, there are no changes in the container.
Time complexityDepends on container size.
ExampleThe following example shows the usage of std::set::emplace_hint.
#include <iostream> #include <set> #include <string> int main () { std::set<std::string> myset; auto it = myset.cbegin(); myset.emplace_hint (it,"sairam"); it = myset.emplace_hint (myset.cend(),"krishna"); it = myset.emplace_hint (it,"prasad"); it = myset.emplace_hint (it,"Mammahe"); std::cout << "myset contains:"; for (const std::string& x: myset) std::cout << ' ' << x; std::cout << '\n'; return 0; }
The above program will compile and execute properly.
myset contains: Mammahe krishna prasad sairam
set.htm
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4