Struct cretonne_codegen::bforest::Set[][src]

pub struct Set<K, C> where
    K: Copy,
    C: Comparator<K>, 
{ /* 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, C> Set<K, C> where
    K: Copy,
    C: Comparator<K>, 
[src]

Make an empty set.

Is this an empty set?

Does the set contain key?.

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.

Remove key from the set and return true.

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

Remove all entries.

Retains only the elements specified by the predicate.

Remove all elements where the predicate returns false.

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

Important traits for SetIter<'a, K, C>

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

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Returns the "default value" for a type. Read more

Auto Trait Implementations

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

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