Struct std::collections::TrieSet[src]
pub struct TrieSet {
// some fields omitted
}Methods
impl TrieSet
fn new() -> TrieSet
Create an empty TrieSet
fn each_reverse(&self, f: |&uint| -> bool) -> bool
Visit all values in reverse order
fn iter(&'a self) -> SetItems<'a>
Get an iterator over the values in the set
fn lower_bound(&'a self, val: uint) -> SetItems<'a>
Get an iterator pointing to the first value that is not less than val.
If all values in the set are less than val an empty iterator is returned.
fn upper_bound(&'a self, val: uint) -> SetItems<'a>
Get an iterator pointing to the first value that key is greater than val.
If all values in the set are not greater than val an empty iterator is returned.
Trait Implementations
impl Collection for TrieSet
impl Mutable for TrieSet
fn clear(&mut self)
Clear the set, removing all values.