pub struct VarValue<K: UnifyKey> { /* private fields */ }
Expand description
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§
source§impl<K: PartialEq + UnifyKey> PartialEq for VarValue<K>where
K::Value: PartialEq,
impl<K: PartialEq + UnifyKey> PartialEq for VarValue<K>where K::Value: PartialEq,
impl<K: UnifyKey> StructuralPartialEq for VarValue<K>
Auto Trait Implementations§
impl<K> RefUnwindSafe for VarValue<K>where K: RefUnwindSafe, <K as UnifyKey>::Value: RefUnwindSafe,
impl<K> Send for VarValue<K>where K: Send, <K as UnifyKey>::Value: Send,
impl<K> Sync for VarValue<K>where K: Sync, <K as UnifyKey>::Value: Sync,
impl<K> Unpin for VarValue<K>where K: Unpin, <K as UnifyKey>::Value: Unpin,
impl<K> UnwindSafe for VarValue<K>where K: UnwindSafe, <K as UnifyKey>::Value: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more