Task:
Write global method that takes std::vector, insertion index and object to insert. The behavior shall be same as std::vector::insert(). using of original function is not allowed. std::vector::iterator insert(std::vector& v, size_t pos, const T& v)
Files:
VectorInsert - defines function template; VectorInsertTest - provides test harness.