PrevUpHomeNext

Function template collation_search

boost::text::v1::collation_search

Synopsis

// In header: <boost/text/collation_search.hpp>


template<code_point_iter I, std::sentinel_for< I > S, 
         searcher< I, S > Searcher> 
  collation_search_result< I > 
  collation_search(I first, S last, Searcher const & search);

Description

Returns the code point subrange within [first, last) in which searcher finds its pattern. If the pattern is not found, the resulting range will be empty.


PrevUpHomeNext