Struct ena::unify::VarValue [] [src]

pub struct VarValue<K: UnifyKey> { /* fields omitted */ }

Value of a unification key. We implement Tarjan's union-find algorithm: when two keys are unified, one of them is converted into a "redirect" pointing at the other. These redirects form a DAG: the roots of the DAG (nodes that are not redirected) are each associated with a value of type V and a rank. The rank is used to keep the DAG relatively balanced, which helps keep the running time of the algorithm under control. For more information, see http://en.wikipedia.org/wiki/Disjoint-set_data_structure.

Trait Implementations

impl<K: PartialEq + UnifyKey> PartialEq for VarValue<K> where
    K::Value: PartialEq
[src]

[src]

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

[src]

This method tests for !=.

impl<K: Clone + UnifyKey> Clone for VarValue<K> where
    K::Value: Clone
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<K: Debug + UnifyKey> Debug for VarValue<K> where
    K::Value: Debug
[src]

[src]

Formats the value using the given formatter.