@brief Find all potentially @b overlapping occurrences of a given string in @b reverse order. */
| 2549 | |
| 2550 | /** @brief Find all potentially @b overlapping occurrences of a given string in @b reverse order. */ |
| 2551 | rfind_all_type rfind_all(string_view needle, include_overlaps_type = {}) const noexcept { return {*this, needle}; } |
| 2552 | |
| 2553 | /** @brief Find all @b non-overlapping occurrences of a given string. */ |
| 2554 | find_disjoint_type find_all(string_view needle, exclude_overlaps_type) const noexcept { return {*this, needle}; } |