| 276 | */ |
| 277 | template<typename RangeT> |
| 278 | inline iterator_range< |
| 279 | BOOST_STRING_TYPENAME range_iterator<RangeT>::type> |
| 280 | find_tail( |
| 281 | RangeT& Input, |
| 282 | int N) |
| 283 | { |
| 284 | return ::boost::algorithm::find(Input, ::boost::algorithm::tail_finder(N)); |
| 285 | } |
| 286 | |
| 287 | // find_token --------------------------------------------------------------------// |
| 288 |
nothing calls this directly
no test coverage detected