PrevUpHomeNext

Function template make_boyer_moore_horspool_collation_searcher

boost::text::v1::make_boyer_moore_horspool_collation_searcher

Synopsis

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


template<code_point_range R> 
  unspecified make_boyer_moore_horspool_collation_searcher(R && r, 
                                                           collation_table const & table, 
                                                           collation_flags flags = collation_flags::none);

Description

Returns a boyer_moore_horspool_collation_searcher that will find the pattern r. A match must begin and end at a grapheme boundary. In C++20 and later, if std::ranges::borrowed_range<R> is false, this function returns a std::ranges::dangling.


PrevUpHomeNext