MCPcopy Create free account
hub / github.com/ashvardanian/StringZilla / rfind_all

Method rfind_all

include/stringzilla/stringzilla.hpp:2551–2551  ·  view source on GitHub ↗

@brief Find all potentially @b overlapping occurrences of a given string in @b reverse order. */

Source from the content-addressed store, hash-verified

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}; }

Callers 1

test_searchFunction · 0.80

Calls

no outgoing calls

Tested by 1

test_searchFunction · 0.64