* @brief Split the string by Unicode whitespace characters (UTF-8 aware). * @return A range of non-empty string slices split by whitespace. * * Splits on all 25 Unicode whitespace characters. Empty segments (consecutive whitespace) are skipped. */
| 4217 | * Splits on all 25 Unicode whitespace characters. Empty segments (consecutive whitespace) are skipped. |
| 4218 | */ |
| 4219 | range_utf8_whitespace_splits<basic_string> utf8_split() const noexcept { return {*this}; } |
| 4220 | |
| 4221 | /** |
| 4222 | * @brief Apply Unicode case folding to the string in-place. |
no outgoing calls