| 129 | */ |
| 130 | template<typename Range1T, typename Range2T> |
| 131 | inline iterator_range< |
| 132 | BOOST_STRING_TYPENAME range_iterator<Range1T>::type> |
| 133 | find_last( |
| 134 | Range1T& Input, |
| 135 | const Range2T& Search) |
| 136 | { |
| 137 | return ::boost::algorithm::find(Input, ::boost::algorithm::last_finder(Search)); |
| 138 | } |
| 139 | |
| 140 | //! Find last algorithm ( case insensitive ) |
| 141 | /*! |
nothing calls this directly
no test coverage detected