129
edits
Changes
no edit summary
===List of STL Functions:===
'''Algorithms'''
'''STL iterators'''
STL iterators are supported for serial traversal. Should you use an iterator in parallel, you must be cautious to not change the data while a thread is going through the iterator.
They are defined within te header "'''<iterator>'''" and is coded as <pre>
#include<iterator>
foo(){
for(auto i = myVector.begin(); i < myVector.end(); i++){
bar();
}
}
'''Containers'''
===List of TBB containers:===