Struct cranelift_bforest::Set[][src]

pub struct Set<K> where
    K: Copy
{ /* fields omitted */ }
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

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.

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

Notable traits for SetIter<'a, K>

impl<'a, K> Iterator for SetIter<'a, K> where
    K: 'a + Copy
type Item = 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(&self) -> Set<K>[src]

Returns a copy of the value. Read more

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]

fn default() -> Self[src]

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

Auto Trait Implementations

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

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

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.

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

Performs the conversion.

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.

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

Performs the conversion.