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_iter I, std::sentinel_for< I > S, 
         searcher_break_func BreakFunc> 
  unspecified make_boyer_moore_horspool_collation_searcher(I first, S last, 
                                                           BreakFunc break_fn, 
                                                           collation_table const & table, 
                                                           collation_flags flags = collation_flags::none);

Description

Returns a boyer_moore_horspool_collation_searcher that will find the pattern [first, last). Any occurence of the pattern must be found starting at and ending at a boundary found by break_fn (e.g. a grapheme or word boundary).


PrevUpHomeNext