| 731 | */ |
| 732 | template<typename SequenceT> |
| 733 | inline void erase_head( |
| 734 | SequenceT& Input, |
| 735 | int N ) |
| 736 | { |
| 737 | ::boost::algorithm::find_format( |
| 738 | Input, |
| 739 | ::boost::algorithm::head_finder(N), |
| 740 | ::boost::algorithm::empty_formatter( Input ) ); |
| 741 | } |
| 742 | |
| 743 | // erase_tail --------------------------------------------------------------------// |
| 744 |
nothing calls this directly
no test coverage detected