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]
The second-worst Aho-Corasick implementation on pub.dev.
AhoCorasick.from(['b', 'ab', 'e'])
.findAll('abe')
.map((m) => m.contents)
.toList());
// [b, ab, e]