@brief Find the last occurrence of a character from a @p `set`. */
| 3268 | |
| 3269 | /** @brief Find the last occurrence of a character from a @p `set`. */ |
| 3270 | size_type find_last_of(byteset set) const noexcept { return view().find_last_of(set); } |
| 3271 | |
| 3272 | /** @brief Find the last occurrence of a character outside a @p `set`. */ |
| 3273 | size_type find_last_not_of(byteset set) const noexcept { return view().find_last_not_of(set); } |
no outgoing calls