///////////////////////////////////////////////////////
| 458 | |
| 459 | //////////////////////////////////////////////////////////// |
| 460 | bool String::isSentenceBoundary(std::size_t position) const |
| 461 | { |
| 462 | return unicode::is_sentence_boundary(m_string.data(), m_string.size(), position); |
| 463 | } |
| 464 | |
| 465 | |
| 466 | //////////////////////////////////////////////////////////// |