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