Tagged Questions

9
votes
6answers
7k views

Is the C++ STL std::set thread-safe?

I've a question about the thread safety of std::set. As far as I know I can iterate over a set and add/erase members and that doesn't invalidate the iterators. But consider following scenario: ...