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.