Trait pop_trait::PopBack [] [src]

pub trait PopBack<T>: Pop<T> {
    fn pop_back(&mut self) -> Option<T>;
}

A mutable collection from which items can be removed "at the end," retaining ordering

Required Methods

Removes the value from the back of the collection, if any exist.

Implementors