harper_core

Trait VecExt

source
pub trait VecExt {
    // Required method
    fn remove_indices(&mut self, to_remove: VecDeque<usize>);
}

Required Methods§

source

fn remove_indices(&mut self, to_remove: VecDeque<usize>)

Removes a list of indices from a Vector. Assumes that the provided indices are already in sorted order.

Implementations on Foreign Types§

source§

impl<T> VecExt for Vec<T>

source§

fn remove_indices(&mut self, to_remove: VecDeque<usize>)

Implementors§