Open main menu

CDOT Wiki β

Changes

Team Darth Vector

48 bytes added, 19:37, 13 December 2017
List of STL Functions:
'''Algorithms'''
Are supported by STL for various algorithms such as sorting, searching and accumulation. All can be found within the header "'''<algorithm>'''".Examples include sort() and reverse functions()
'''STL iterators'''
are 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(){
129
edits