| 245 | */ |
| 246 | template<typename RangeT> |
| 247 | inline iterator_range< |
| 248 | BOOST_STRING_TYPENAME range_iterator<RangeT>::type> |
| 249 | find_head( |
| 250 | RangeT& Input, |
| 251 | int N) |
| 252 | { |
| 253 | return ::boost::algorithm::find(Input, ::boost::algorithm::head_finder(N)); |
| 254 | } |
| 255 | |
| 256 | // find_tail ----------------------------------------------------------------------// |
| 257 |
nothing calls this directly
no test coverage detected