pub struct LazySkewHeap<T> { /* private fields */ }
Expand description
遅延加算付き融合可能ヒープ
Implementations§
Source§impl<T: Elem> LazySkewHeap<T>
impl<T: Elem> LazySkewHeap<T>
Sourcepub fn new() -> Self
pub fn new() -> Self
空のLazySkewHeap
を生成する。
Sourcepub fn meld(&mut self, other: LazySkewHeap<T>)
pub fn meld(&mut self, other: LazySkewHeap<T>)
他のLazySkewHeap<T>
を融合する。
Trait Implementations§
Source§impl<T: Clone> Clone for LazySkewHeap<T>
impl<T: Clone> Clone for LazySkewHeap<T>
Source§fn clone(&self) -> LazySkewHeap<T>
fn clone(&self) -> LazySkewHeap<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 LazySkewHeap<T>
impl<T: Debug> Debug for LazySkewHeap<T>
Source§impl<T: Default> Default for LazySkewHeap<T>
impl<T: Default> Default for LazySkewHeap<T>
Source§fn default() -> LazySkewHeap<T>
fn default() -> LazySkewHeap<T>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<T> Freeze for LazySkewHeap<T>
impl<T> RefUnwindSafe for LazySkewHeap<T>where
T: RefUnwindSafe,
impl<T> Send for LazySkewHeap<T>where
T: Send,
impl<T> Sync for LazySkewHeap<T>where
T: Sync,
impl<T> Unpin for LazySkewHeap<T>
impl<T> UnwindSafe for LazySkewHeap<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