PrevUpHomeNext

Function template collation_sort_key

boost::text::v1::collation_sort_key

Synopsis

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


template<code_point_iter I, std::sentinel_for< I > S> 
  text_sort_key 
  collation_sort_key(I first, S last, collation_table const & table, 
                     collation_flags flags = collation_flags::none);

Description

Returns a collation sort key for the code points in [first, last), using the given collation table. Any optional settings flags will be honored, so long as they do not conflict with the settings on the given table.

Requires:

[first, last) is normalized NFD or FCC.


PrevUpHomeNext