| 47 | */ |
| 48 | template<typename RangeT> |
| 49 | inline detail::first_finderF< |
| 50 | BOOST_STRING_TYPENAME range_const_iterator<RangeT>::type, |
| 51 | is_equal> |
| 52 | first_finder( const RangeT& Search ) |
| 53 | { |
| 54 | return |
| 55 | detail::first_finderF< |
| 56 | BOOST_STRING_TYPENAME |
| 57 | range_const_iterator<RangeT>::type, |
| 58 | is_equal>( ::boost::as_literal(Search), is_equal() ) ; |
| 59 | } |
| 60 | |
| 61 | //! "First" finder |
| 62 | /*! |
no test coverage detected