Enum adapton::catalog::collections::trie::Trie [] [src]

pub enum Trie<X> {
    Nil(BS),
    Leaf(BS, X),
    Bin(BSBox<Trie<X>>, Box<Trie<X>>),
    Root(MetaBox<Trie<X>>),
    Name(NameBox<Trie<X>>),
    Art(Art<Trie<X>>),
}

Probablistically Balanced Trie Rough implementation of probabilistic tries from OOPSLA 2015 paper.

See also: Tries in OCaml

Variants

Trait Implementations

impl<X: Debug> Debug for Trie<X>
[src]

Formats the value using the given formatter.

impl<X: PartialEq> PartialEq for Trie<X>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<X: Eq> Eq for Trie<X>
[src]

impl<X: Clone> Clone for Trie<X>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<X: Debug + Hash + PartialEq + Eq + Clone + 'static> TrieIntro<X> for Trie<X>
[src]

impl<X: Debug + Hash + PartialEq + Eq + Clone + 'static> Hash for Trie<X>
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl<X: Debug + Hash + PartialEq + Eq + Clone + 'static> TrieElim<X> for Trie<X>
[src]