Enum allehanda::list::List [] [src]

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

Variants

Trait Implementations

impl<T: Debug> Debug for List<T>
[src]

Formats the value using the given formatter.

impl<T: Eq> Eq for List<T>
[src]

impl<T: PartialEq> PartialEq for List<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.