@brief Split around occurrences of a given string in @b reverse order. */
| 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}; } |
| 2576 | |
| 2577 | /** @brief Split around occurrences of given characters. */ |
| 2578 | split_chars_type split(byteset set = whitespaces_set()) const noexcept { return {*this, {set}}; } |