index

ref: stl

The standard template library: libraries included with C++.

These include support for containers, sorting, and much more. The question is whether to declare system-wide:
using std; 

//later.. 

vector<int> V(6); 
V[0] = min(V[1], V[2]));
or:
std::vector V(6); 
V[0] = std::min(V[1], V[2]));

nedwaves.com 2017 [171108]