Type IMPL_T

type IMPL_T<A> = dvec::DVec<A>

Function EACH

fn EACH<A>(self: &IMPL_T<A>, f: &fn(v: &A) -> bool)

Iterates through the current contents.

Attempts to access this dvec during iteration will fail.

Function SIZE_HINT

fn SIZE_HINT<A>(self: &IMPL_T<A>) -> Option<uint>