Interface ITrie<T>
A trie data structure that allows partial value sharing to reduce redundant memory.
Inherited Members
Namespace: Towel.DataStructures
Assembly: Towel.dll
Syntax
public interface ITrie<T> : IDataStructure<Action<Action<T>>>, ISteppable<Action<Action<T>>>, System.Collections.Generic.IEnumerable<Action<Action<T>>>, DataStructure.ICountable, DataStructure.IClearable, DataStructure.IAddable<Action<Action<T>>>, DataStructure.IRemovable<Action<Action<T>>>, DataStructure.IAuditable<Action<Action<T>>>
Type Parameters
Name | Description |
---|---|
T | The type of values in the trie. |