Vector
insert(int i, const T* values, int n) [Vector template]
Insert at location i
(0 = beginning) the n
items in the values
array to the vector. This is typically done if you have a C++ array of T
and want to insert those items to your vector.
Returns true if the operation succeeded.
// PROTOTYPE
bool insert(int i, const T* values, int n);