Trait two_sided_vec::TwoSidedExtend [] [src]

pub trait TwoSidedExtend<T> {
    fn extend_back<I: IntoIterator<Item = T>>(&mut self, iter: I);
fn extend_front<I: IntoIterator<Item = T>>(&mut self, iter: I); }

The two-sided counterpart to Extend, which supports extending both the front and back of the

Required Methods

Implementors