| 121 | */ |
| 122 | template<typename FinderT, typename RangeT> |
| 123 | find_iterator( |
| 124 | RangeT& Col, |
| 125 | FinderT Finder ) : |
| 126 | detail::find_iterator_base<IteratorT>(Finder,0) |
| 127 | { |
| 128 | iterator_range<BOOST_STRING_TYPENAME range_iterator<RangeT>::type> lit_col(::boost::as_literal(Col)); |
| 129 | m_Match=::boost::make_iterator_range(::boost::begin(lit_col), ::boost::begin(lit_col)); |
| 130 | m_End=::boost::end(lit_col); |
| 131 | |
| 132 | increment(); |
| 133 | } |
| 134 | |
| 135 | private: |
| 136 | // iterator operations |
nothing calls this directly
no test coverage detected