Struct louds::trie::TrieVec[][src]

pub struct TrieVec<T> { /* fields omitted */ }

Naive trie implementation supporting dynamic insertion.

Methods

impl<'a, T> TrieVec<T>
[src]

impl<T: Eq + PartialOrd + Ord + Clone> TrieVec<T>
[src]

Trait Implementations

impl<T: Clone> From<TrieVec<T>> for TrieLouds<T>
[src]

Performs the conversion.

impl<T: Debug> Debug for TrieVec<T>
[src]

Formats the value using the given formatter. Read more

impl<T: Eq + PartialOrd + Ord> Trie<T> for TrieVec<T>
[src]

Returns true if the trie contains key.

Auto Trait Implementations

impl<T> Send for TrieVec<T> where
    T: Send

impl<T> Sync for TrieVec<T> where
    T: Sync