| 27 | |
| 28 | template< typename InputT, typename ForwardIteratorT > |
| 29 | inline void insert( |
| 30 | InputT& Input, |
| 31 | BOOST_STRING_TYPENAME InputT::iterator At, |
| 32 | ForwardIteratorT Begin, |
| 33 | ForwardIteratorT End ) |
| 34 | { |
| 35 | Input.insert( At, Begin, End ); |
| 36 | } |
| 37 | |
| 38 | template< typename InputT, typename InsertT > |
| 39 | inline void insert( |
no test coverage detected