Vector
insert(int i, int n, const T& value) [Vector template]
Insert at location i (0 = beginning) n copies of value to a Vector, making the vector larger.
Returns true if the operation succeeded.
// PROTOTYPE
bool insert(int i, int n, const T& value);