pub struct BalancingContext<'a, K, V> {
    parent: Handle<NodeRef<Mut<'a>, K, V, Internal>, KV>,
    left_child: NodeRef<Mut<'a>, K, V, LeafOrInternal>,
    right_child: NodeRef<Mut<'a>, K, V, LeafOrInternal>,
}
Expand description

Represents a session for evaluating and performing a balancing operation around an internal key-value pair.

Fields§

§parent: Handle<NodeRef<Mut<'a>, K, V, Internal>, KV>§left_child: NodeRef<Mut<'a>, K, V, LeafOrInternal>§right_child: NodeRef<Mut<'a>, K, V, LeafOrInternal>

Implementations§

source§

impl<'a, K, V> BalancingContext<'a, K, V>

source

pub fn left_child_len(&self) -> usize

source

pub fn right_child_len(&self) -> usize

source

pub fn into_left_child(self) -> NodeRef<Mut<'a>, K, V, LeafOrInternal>

source

pub fn into_right_child(self) -> NodeRef<Mut<'a>, K, V, LeafOrInternal>

source

pub fn can_merge(&self) -> bool

Returns whether merging is possible, i.e., whether there is enough room in a node to combine the central KV with both adjacent child nodes.

source§

impl<'a, K: 'a, V: 'a> BalancingContext<'a, K, V>

source

fn do_merge<F: FnOnce(NodeRef<Mut<'a>, K, V, Internal>, NodeRef<Mut<'a>, K, V, LeafOrInternal>) -> R, R, A: Allocator>( self, result: F, alloc: A ) -> R

Performs a merge and lets a closure decide what to return.

source

pub fn merge_tracking_parent<A: Allocator + Clone>( self, alloc: A ) -> NodeRef<Mut<'a>, K, V, Internal>

Merges the parent’s key-value pair and both adjacent child nodes into the left child node and returns the shrunk parent node.

Panics unless we .can_merge().

source

pub fn merge_tracking_child<A: Allocator + Clone>( self, alloc: A ) -> NodeRef<Mut<'a>, K, V, LeafOrInternal>

Merges the parent’s key-value pair and both adjacent child nodes into the left child node and returns that child node.

Panics unless we .can_merge().

source

pub fn merge_tracking_child_edge<A: Allocator + Clone>( self, track_edge_idx: LeftOrRight<usize>, alloc: A ) -> Handle<NodeRef<Mut<'a>, K, V, LeafOrInternal>, Edge>

Merges the parent’s key-value pair and both adjacent child nodes into the left child node and returns the edge handle in that child node where the tracked child edge ended up,

Panics unless we .can_merge().

source

pub fn steal_left( self, track_right_edge_idx: usize ) -> Handle<NodeRef<Mut<'a>, K, V, LeafOrInternal>, Edge>

Removes a key-value pair from the left child and places it in the key-value storage of the parent, while pushing the old parent key-value pair into the right child. Returns a handle to the edge in the right child corresponding to where the original edge specified by track_right_edge_idx ended up.

source

pub fn steal_right( self, track_left_edge_idx: usize ) -> Handle<NodeRef<Mut<'a>, K, V, LeafOrInternal>, Edge>

Removes a key-value pair from the right child and places it in the key-value storage of the parent, while pushing the old parent key-value pair onto the left child. Returns a handle to the edge in the left child specified by track_left_edge_idx, which didn’t move.

source

pub fn bulk_steal_left(&mut self, count: usize)

This does stealing similar to steal_left but steals multiple elements at once.

source

pub fn bulk_steal_right(&mut self, count: usize)

The symmetric clone of bulk_steal_left.

Auto Trait Implementations§

§

impl<'a, K, V> RefUnwindSafe for BalancingContext<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,

§

impl<'a, K, V> Send for BalancingContext<'a, K, V>where K: Send, V: Send,

§

impl<'a, K, V> Sync for BalancingContext<'a, K, V>where K: Sync, V: Sync,

§

impl<'a, K, V> Unpin for BalancingContext<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for BalancingContext<'a, K, V>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.