PrevUpHomeNext

Function template sentence

boost::text::v1::sentence

Synopsis

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


template<code_point_range R> 
  unspecified sentence(R && r, std::ranges::iterator_t< R > it);

Description

Returns the bounds of the sentence that it lies within. Returns a utf32_view; in C++20 and later, if std::ranges::borrowed_range<R> is false, this function returns a std::ranges::dangling instead.

Returns grapheme range delimiting the bounds of the sentence that it lies within. Returns a grapheme_view; in C++20 and later, if std::ranges::borrowed_range<R> is false, this function returns a std::ranges::dangling instead.


PrevUpHomeNext