Listing 3: The default insert function template

template< typename C, typename V >
inline void insert( C& c, const V& v )
{
  c.insert( c.end(), v );
}
— End of Listing —