0 purchases
aho corasick trie
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]
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.