[][src]Struct cranelift_bforest::Set

pub struct Set<K> where
    K: Copy
{ /* fields omitted */ }

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.

Methods

impl<K> Set<K> where
    K: Copy
[src]

pub fn new() -> Self[src]

Make an empty set.

pub fn is_empty(&self) -> bool[src]

Is this an empty set?

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

Does the set contain key?.

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

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.

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

Remove key from the set and return true.

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

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

Remove all entries.

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

Retains only the elements specified by the predicate.

Remove all elements where the predicate returns false.

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

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

Important traits for SetIter<'a, K>
pub fn iter<'a>(&'a self, forest: &'a SetForest<K>) -> SetIter<'a, K>[src]

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

Trait Implementations

impl<K: Clone> Clone for Set<K> where
    K: Copy
[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<K> Default for Set<K> where
    K: Copy
[src]

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.