* @brief Find the last occurrence of a substring. * @return The offset of the first character of the match, or `npos` if not found. */
| 3199 | * @return The offset of the first character of the match, or `npos` if not found. |
| 3200 | */ |
| 3201 | size_type rfind(string_view other) const noexcept { return view().rfind(other); } |
| 3202 | |
| 3203 | /** |
| 3204 | * @brief Find the last occurrence of a substring, within first `until` characters. |
no outgoing calls