This module implements suffix arrays.
Types
SuffixArray = object
- Suffix array. Source Edit
Procs
func findAll(self: SuffixArray; query: string): set[int16] {.inline, noinit, ...raises: [], tags: [], forbids: [].}
- Returns the all indices of the strings that have the query as their substrings. Source Edit