| 213 | */ |
| 214 | template<typename Range1T, typename Range2T> |
| 215 | inline iterator_range< |
| 216 | BOOST_STRING_TYPENAME range_iterator<Range1T>::type> |
| 217 | ifind_nth( |
| 218 | Range1T& Input, |
| 219 | const Range2T& Search, |
| 220 | int Nth, |
| 221 | const std::locale& Loc=std::locale()) |
| 222 | { |
| 223 | return ::boost::algorithm::find(Input, ::boost::algorithm::nth_finder(Search,Nth,is_iequal(Loc))); |
| 224 | } |
| 225 | |
| 226 | // find_head ----------------------------------------------------------------------// |
| 227 |
nothing calls this directly
no test coverage detected