イテレーター

concurrent_unordered_set::iteratorconcurrent_unordered_set::const_iterator タイプは、[forward.iterators] ISO C++ 標準の ForwardIterator 要件を満たしている必要があります。

begin と cbegin

iterator begin(); const_iterator begin() const; const_iterator cbegin() const;

戻り値: コンテナーの最初の要素:のイテレーターを返します。

end と cend

iterator end(); 

const_iterator end() const; 

const_iterator cend() const;

戻り値: コンテナーの最後の要素に続く要素のイテレーターを返します。