July 2007
Intermediate to advanced
332 pages
10h 4m
English
The template class concurrent_hash_map supports forward iterators; that is, iterators that can advance only forward across the table. Reverse iterators are not supported. All elements will be visited in a walk from begin to end, but there is no guarantee on the order of the walk.
iterator begin()
Returns: iterator pointing to the beginning of the key-value sequence.
iterator end()
Returns: iterator pointing to the end of the key-value sequence.
const_iterator begin() const
Returns: const_iterator pointing to the beginning of the key-value sequence.
const_iterator end() const
Returns: const_iterator pointing to the end of the key-value sequence.