@brief Find all potentially @b overlapping occurrences of a given string. */
| 2546 | |
| 2547 | /** @brief Find all potentially @b overlapping occurrences of a given string. */ |
| 2548 | find_all_type find_all(string_view needle, include_overlaps_type = {}) const noexcept { return {*this, needle}; } |
| 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}; } |