Struct cranelift_bforest::Set

source ·
pub struct Set<K>
where K: Copy,
{ /* private fields */ }
Expand description

B-tree representing an ordered set of Ks using C for comparing elements.

This is not a general-purpose replacement for BTreeSet. See the module documentation for more information about design tradeoffs.

Sets can be cloned, but that operation should only be used as part of cloning the whole forest they belong to. Cloning a set does not allocate new memory for the clone. It creates an alias of the same memory.

Implementations§

source§

impl<K> Set<K>
where K: Copy,

source

pub fn new() -> Self

Make an empty set.

source

pub fn is_empty(&self) -> bool

Is this an empty set?

source

pub fn contains<C: Comparator<K>>( &self, key: K, forest: &SetForest<K>, comp: &C ) -> bool

Does the set contain key?.

source

pub fn insert<C: Comparator<K>>( &mut self, key: K, forest: &mut SetForest<K>, comp: &C ) -> bool

Try to insert key into the set.

If the set did not contain key, insert it and return true.

If key is already present, don’t change the set and return false.

source

pub fn remove<C: Comparator<K>>( &mut self, key: K, forest: &mut SetForest<K>, comp: &C ) -> bool

Remove key from the set and return true.

If key was not present in the set, return false.

source

pub fn clear(&mut self, forest: &mut SetForest<K>)

Remove all entries.

source

pub fn retain<F>(&mut self, forest: &mut SetForest<K>, predicate: F)
where F: FnMut(K) -> bool,

Retains only the elements specified by the predicate.

Remove all elements where the predicate returns false.

source

pub fn cursor<'a, C: Comparator<K>>( &'a mut self, forest: &'a mut SetForest<K>, comp: &'a C ) -> SetCursor<'a, K, C>

Create a cursor for navigating this set. The cursor is initially positioned off the end of the set.

source

pub fn iter<'a>(&'a self, forest: &'a SetForest<K>) -> SetIter<'a, K>

Create an iterator traversing this set. The iterator type is K.

Trait Implementations§

source§

impl<K> Clone for Set<K>
where K: Copy + Clone,

source§

fn clone(&self) -> Set<K>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<K> Default for Set<K>
where K: Copy,

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<K> Freeze for Set<K>

§

impl<K> RefUnwindSafe for Set<K>
where K: RefUnwindSafe,

§

impl<K> Send for Set<K>
where K: Send,

§

impl<K> Sync for Set<K>
where K: Sync,

§

impl<K> Unpin for Set<K>
where K: Unpin,

§

impl<K> UnwindSafe for Set<K>
where K: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.