PrevUpHomeNext

Struct template collation_search_result

boost::text::collation_search_result

Synopsis

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

template<code_point_iter I, std::sentinel_for< I > S = I> 
struct collation_search_result : public boost::text::subrange< I > {
  // types
  typedef I iterator;
  typedef S sentinel;

  // construct/copy/destruct
  collation_search_result();
  collation_search_result(iterator, iterator);
};

Description

The result type returned from the code point overloads of collation_search().

collation_search_result public construct/copy/destruct

  1. collation_search_result();
  2. collation_search_result(iterator first, iterator last);

PrevUpHomeNext