| 1359 | */ |
| 1360 | template <typename string_type_> |
| 1361 | range_matches<string_type_, matcher_find<string_type_, include_overlaps_type>> find_all( |
| 1362 | string_type_ const &h, string_type_ const &n, include_overlaps_type = {}) noexcept { |
| 1363 | return {h, n}; |
| 1364 | } |
| 1365 | |
| 1366 | /** |
| 1367 | * @brief Find all potentially @b overlapping inclusions of a needle substring in @b reverse order. |
no outgoing calls
searching dependent graphs…