aho_corasick_trie 0.0.1 aho_corasick_trie: ^0.0.1 copied to clipboard
Aho-Corasick string search
The second-worst Aho-Corasick implementation on pub.dev.
Usage #
AhoCorasick.from(['b', 'ab', 'e'])
.findAll('abe')
.map((m) => m.contents)
.toList());
// [b, ab, e]