| 692 | typename OutputIteratorT, |
| 693 | typename RangeT> |
| 694 | inline OutputIteratorT erase_head_copy( |
| 695 | OutputIteratorT Output, |
| 696 | const RangeT& Input, |
| 697 | int N ) |
| 698 | { |
| 699 | return ::boost::algorithm::find_format_copy( |
| 700 | Output, |
| 701 | Input, |
| 702 | ::boost::algorithm::head_finder(N), |
| 703 | ::boost::algorithm::empty_formatter( Input ) ); |
| 704 | } |
| 705 | |
| 706 | //! Erase head algorithm |
| 707 | /*! |
nothing calls this directly
no test coverage detected