Trait std::vec::ImmutableCopyableVector

pub trait ImmutableCopyableVector<T> {
    fn partitioned(&self, f: &fn(&T) -> bool) -> (~[T], ~[T]);
    unsafe fn unsafe_get(&self, elem: uint) -> T;
    fn permutations_iter(self) -> Permutations<T>;
}

Required Methods

fn partitioned(&self, f: &fn(&T) -> bool) -> (~[T], ~[T])

unsafe fn unsafe_get(&self, elem: uint) -> T

fn permutations_iter(self) -> Permutations<T>

Implementors