Struct kimchi::snarky::union_find::DisjointSet
source · pub struct DisjointSet<T> { /* private fields */ }
Expand description
Tarjan’s Union-Find Data structure
Implementations§
Trait Implementations§
source§impl<T: Clone> Clone for DisjointSet<T>
impl<T: Clone> Clone for DisjointSet<T>
source§fn clone(&self) -> DisjointSet<T>
fn clone(&self) -> DisjointSet<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: Debug> Debug for DisjointSet<T>
impl<T: Debug> Debug for DisjointSet<T>
source§impl<T: Default> Default for DisjointSet<T>
impl<T: Default> Default for DisjointSet<T>
source§fn default() -> DisjointSet<T>
fn default() -> DisjointSet<T>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<T> RefUnwindSafe for DisjointSet<T>where T: RefUnwindSafe,
impl<T> Send for DisjointSet<T>where T: Send,
impl<T> Sync for DisjointSet<T>where T: Sync,
impl<T> Unpin for DisjointSet<T>where T: Unpin,
impl<T> UnwindSafe for DisjointSet<T>where T: 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