| 764 | typename OutputIteratorT, |
| 765 | typename RangeT> |
| 766 | inline OutputIteratorT erase_tail_copy( |
| 767 | OutputIteratorT Output, |
| 768 | const RangeT& Input, |
| 769 | int N ) |
| 770 | { |
| 771 | return ::boost::algorithm::find_format_copy( |
| 772 | Output, |
| 773 | Input, |
| 774 | ::boost::algorithm::tail_finder(N), |
| 775 | ::boost::algorithm::empty_formatter( Input ) ); |
| 776 | } |
| 777 | |
| 778 | //! Erase tail algorithm |
| 779 | /*! |
nothing calls this directly
no test coverage detected