I wanna store small objects in unordered_map, just wondering if it may copy/release contained objects if there is any insert/remove/rehash operation? I think unordered_map uses link list to store key/value pair, it should not need to copy/release objects like vector for memory reallocation.
I wanna store small objects in unordered_map, just wondering if it may copy/release contained
Share
C++11 standard: § 23.2.5/8
In short for
unordered_map,In case of Insert/Erase operations,