SplitInto

Trait SplitInto 

Source
pub trait SplitInto {
    // Required method
    fn split_into(self, n: usize) -> Vec<Self>
       where Self: Sized;
}

Required Methods§

Source

fn split_into(self, n: usize) -> Vec<Self>
where Self: Sized,

Implementations on Foreign Types§

Source§

impl<T> SplitInto for Vec<T>

Source§

fn split_into(self, n: usize) -> Vec<Self>

Implementors§