Trait rust_utils::vec::VecExt
source · pub trait VecExt<T>: Sealed {
// Required methods
fn insert_vec(&mut self, index: usize, other: Vec<T>);
fn remove_if<F>(&mut self, f: F)
where F: FnMut(&mut T) -> bool;
}
pub trait VecExt<T>: Sealed {
// Required methods
fn insert_vec(&mut self, index: usize, other: Vec<T>);
fn remove_if<F>(&mut self, f: F)
where F: FnMut(&mut T) -> bool;
}