Comment by camel-cdr
1 day ago
Here is a great talk about the new boost::unordered_map implementation: https://m.youtube.com/watch?v=Rg8MZ5pJIJA
It's design is clearly inspired by abseil::flat_map but improves it in a few aspects.
1 day ago
Here is a great talk about the new boost::unordered_map implementation: https://m.youtube.com/watch?v=Rg8MZ5pJIJA
It's design is clearly inspired by abseil::flat_map but improves it in a few aspects.
Nitpick, but I think you mean boost::unordered_flat_map.
boost::unordered_map is a drop-in replacement for std::unordered_map and as such uses seperate chaining.
Anyway, thanks for the video!
Yeah, thanks for the correction.