Did you know?
Heterogeneous Lookup in Ordered Containers, C++14 Feature
by Bartlomiej Filipek
From the article:
If you have a map of strings, like std::map<std::string, int> m; and you want to find some element by m.find("abc"). Do you have to pay the price and construct a std::string object? Can you optimize it?
Let’s have a look at one feature enabled in C++14 that might help optimize such container access...
Add a Comment
Comments are closed.