129
edits
Changes
m
→List of TBB containers:
queue.
'''<u>concurrent_vector</u>''' : This is a container class for vectors with concurrent support. These vectors do not support insertion or erase operations but supports concurrent operations. Note that when elements are inserted, they cannot be removed without calling the clear() member function on it, which removes every element in the array. This is defined within the header "'''tbb/concurrent_vector.h'''" and is coded as: <blockquotepre> '''#include <tbb/concurrent_vector.h>//...// tbb:concurrent_vector<type> name''' ; </blockquotepre>
'''<u>concurrent_hash_map</u>''' : hash table that permits concurrent accesses.