| 155 | */ |
| 156 | template<typename Range1T, typename Range2T> |
| 157 | inline iterator_range< |
| 158 | BOOST_STRING_TYPENAME range_iterator<Range1T>::type> |
| 159 | ifind_last( |
| 160 | Range1T& Input, |
| 161 | const Range2T& Search, |
| 162 | const std::locale& Loc=std::locale()) |
| 163 | { |
| 164 | return ::boost::algorithm::find(Input, ::boost::algorithm::last_finder(Search, is_iequal(Loc))); |
| 165 | } |
| 166 | |
| 167 | // find_nth ----------------------------------------------------------------------// |
| 168 |
nothing calls this directly
no test coverage detected