...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::algorithm::boyer_moore_horspool
// In header: <boost/algorithm/searching/boyer_moore_horspool.hpp> template<typename patIter, typename traits = detail::BM_traits<patIter> > class boyer_moore_horspool { public: // construct/copy/destruct boyer_moore_horspool(patIter, patIter); ~boyer_moore_horspool(); // public member functions template<typename corpusIter> corpusIter operator()(corpusIter, corpusIter) const; template<typename Range> boost::range_iterator< Range >::type operator()(Range &) const; };