[][src]Trait two_sided_vec::TwoSidedExtend

pub trait TwoSidedExtend<T> {
    pub fn extend_back<I: IntoIterator<Item = T>>(&mut self, iter: I);
pub 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

pub fn extend_back<I: IntoIterator<Item = T>>(&mut self, iter: I)[src]

pub fn extend_front<I: IntoIterator<Item = T>>(&mut self, iter: I)[src]

Loading content...

Implementors

impl<'a, T: Copy + 'a> TwoSidedExtend<&'a T> for TwoSidedVec<T>[src]

impl<T> TwoSidedExtend<T> for TwoSidedVec<T>[src]

Loading content...