| 102 | */ |
| 103 | template<typename Range1T, typename Range2T> |
| 104 | inline iterator_range< |
| 105 | BOOST_STRING_TYPENAME range_iterator<Range1T>::type> |
| 106 | ifind_first( |
| 107 | Range1T& Input, |
| 108 | const Range2T& Search, |
| 109 | const std::locale& Loc=std::locale()) |
| 110 | { |
| 111 | return ::boost::algorithm::find(Input, ::boost::algorithm::first_finder(Search,is_iequal(Loc))); |
| 112 | } |
| 113 | |
| 114 | // find_last -----------------------------------------------// |
| 115 |
nothing calls this directly
no test coverage detected