pub struct PersistentUnionFind { /* private fields */ }
Expand description
永続UnionFind
Implementations§
Source§impl PersistentUnionFind
impl PersistentUnionFind
Sourcepub fn new(n: usize) -> Self
pub fn new(n: usize) -> Self
大きさn
のPersistentUnionFind
を返す。
Trait Implementations§
Source§impl Clone for PersistentUnionFind
impl Clone for PersistentUnionFind
Source§fn clone(&self) -> PersistentUnionFind
fn clone(&self) -> PersistentUnionFind
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 moreAuto Trait Implementations§
impl Freeze for PersistentUnionFind
impl RefUnwindSafe for PersistentUnionFind
impl !Send for PersistentUnionFind
impl !Sync for PersistentUnionFind
impl Unpin for PersistentUnionFind
impl UnwindSafe for PersistentUnionFind
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