pub trait AppendFront<T>: Sized {
    fn append_front(&mut self, _: T) -> &mut Self;
}
Expand description

appends to front of the list meaning: list.insert(o, item)

Required methods

performs the append front

Implementors