Expand description
Trie Occurrence Counter is frequency dictionary that uses any impl Iterator<Item = char>
type as occurrent.
Support for English letters A–Za–z OOB.
Modules§
- Module contains functions for working with English alphabet letters, A-Za-z.
Structs§
Letter
isAlphabet
element, represents tree node.- Trie Occurrence Counter is frequency dictionary that uses any
impl Iterator<Item = char>
type as occurrent.
Enums§
- Insertion result enumeration.
- Versatile result enumeration.
Functions§
- Alphabet function, tree arms generation of length specified.
Type Aliases§
- Alphabet function. Constructs alphabet that supports chosen
char
s. - Tree node arms. Consists of
Letter
s. - Index conversion function. Tighten with
Alphabet
. Returns correspondingusize
d index ofchar
.