insert in front of vector c++ code example
Example 1: insert at position in vector c++
// where v is the vector to insert, i is
// the position, and value is the value
v.insert(v.begin() + i, v2[i])
Example 2: vector push front insert()
auto it = vec.insert(vec.begin(), 3);