Enum extra::list::MutList

pub enum MutList<T> {
    MutCons(T, @mut MutList<T>),
    MutNil,
}

Methods

impl<T> MutList<T>

fn each(@mut self, f: &fn(&mut T) -> bool) -> bool

Iterate over a mutable list

Trait Implementations

impl<T: std::cmp::Eq> std::cmp::Eq for MutList<T>

fn eq(&self, __arg_0: &MutList<T>) -> bool

fn ne(&self, __arg_0: &MutList<T>) -> bool