Changes between Initial Version and Version 1 of Ticket #3433, comment 9


Ignore:
Timestamp:
Sep 17, 2016, 12:09:39 AM (8 years ago)
Author:
Vladislav Belov

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3433, comment 9

    initial v1  
    1515Unordered Map (Not Cached) Avg:
    1616  2,357s
     17
     18Hash for CStr/unordered_map:
     19{{{
     20struct KeyHasher
     21{
     22        std::size_t operator()(const CStr& key) const
     23        {
     24                return std::hash<std::string>()(key.c_str());
     25        }
     26};
     27}}}