| 1369 | */ |
| 1370 | template <typename string_type_> |
| 1371 | range_rmatches<string_type_, matcher_rfind<string_type_, include_overlaps_type>> rfind_all( |
| 1372 | string_type_ const &h, string_type_ const &n, include_overlaps_type = {}) noexcept { |
| 1373 | return {h, n}; |
| 1374 | } |
| 1375 | |
| 1376 | /** |
| 1377 | * @brief Find all @b non-overlapping inclusions of a needle substring. |
no outgoing calls
searching dependent graphs…