@brief Split around occurrences of a given string. */
| 2570 | |
| 2571 | /** @brief Split around occurrences of a given string. */ |
| 2572 | split_type split(string_view delimiter) const noexcept { return {*this, delimiter}; } |
| 2573 | |
| 2574 | /** @brief Split around occurrences of a given string in @b reverse order. */ |
| 2575 | rsplit_type rsplit(string_view delimiter) const noexcept { return {*this, delimiter}; } |