Trait cc_traits::PopBack[][src]

pub trait PopBack: Collection {
    fn pop_back(&mut self) -> Option<Self::Item>;
}

Mutable collection where elements can be popped from the back.

Required methods

fn pop_back(&mut self) -> Option<Self::Item>[src]

Remove the back element of the collection and return it (if any).

Loading content...

Implementations on Foreign Types

impl<T> PopBack for Vec<T>[src]

impl<T> PopBack for VecDeque<T>[src]

Loading content...

Implementors

Loading content...