| 305 | */ |
| 306 | template<typename RangeT, typename PredicateT> |
| 307 | inline iterator_range< |
| 308 | BOOST_STRING_TYPENAME range_iterator<RangeT>::type> |
| 309 | find_token( |
| 310 | RangeT& Input, |
| 311 | PredicateT Pred, |
| 312 | token_compress_mode_type eCompress=token_compress_off) |
| 313 | { |
| 314 | return ::boost::algorithm::find(Input, ::boost::algorithm::token_finder(Pred, eCompress)); |
| 315 | } |
| 316 | |
| 317 | } // namespace algorithm |
| 318 |
nothing calls this directly
no test coverage detected