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 thetable
list, removing duplicates.
Functions§
- find_
subsequence πTry to find the subsequencesub
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.