Is order of iteration over the elements of std::unordered_set guaranteed to be always the same?

Viewed 2081

If iterate over the elements of std::unordered_set multiple times without changing the contents of the set (but potentially reading from it, calculating its size, etc.), is it guaranteed that the elements will be visited in the same order each time?

1 Answers
Related