Enum extra::list::List

pub enum List<T> {
    Cons(T, @List<T>),
    Nil,
}

Trait Implementations

impl<T: std::clone::Clone> std::clone::Clone for List<T>

fn clone(&self) -> List<T>

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

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

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