並列反復
メンバータイプ concurrent_unordered_map::range_type
および concurrent_unordered_map::const_range_type
は、ContainerRange の要件を満たします。
これらのタイプの違いは、concurrent_unordered_map::const_range_type
が concurrent_unordered_map::const_iterator
タイプに依存するのに対し、concurrent_unordered_map::range_type
は concurrent_unordered_map::iterator
タイプに依存するという点だけです。
範囲メンバー関数
range_type range(); const_range_type range() const;戻り値: コンテナーのすべての要素を表す範囲オブジェクト。