PrevUpHomeNext

Function template sentences

boost::text::v1::sentences

Synopsis

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


template<code_point_range R> unspecified sentences(R && r);

Description

Returns a view of the code point ranges delimiting sentences in r. The result is returned as a borrowed_view_t in C++20 and later.

Returns a view of the grapheme ranges delimiting sentences in r. The result is returned as a borrowed_view_t in C++20 and later.


PrevUpHomeNext