Expand description
An index-accessed table implementation that avoids duplicate entries.
Structs§
- Unique
SeqTable 🔒 - A table of sequences which tries to avoid common subsequences.
- Unique
Table 🔒 - Collect items into the
table
list, removing duplicates.
Functions§
- find_
subsequence 🔒 - Try to find the subsequence
sub
in thewhole
sequence. Returns None if it’s not been found, or Some(index) if it has been. Naive implementation until proven we need something better.