Trait forky_core::GenericVecExt
source · pub trait GenericVecExt<T> {
// Required methods
fn _first(&self) -> &T;
fn _pop(&mut self) -> T;
fn _get<T2>(&self, index: T2) -> &<T2 as SliceIndex<[T]>>::Output
where T2: SliceIndex<[T]>;
fn _get_mut<T2>(&mut self, index: T2) -> &<T2 as SliceIndex<[T]>>::Output
where T2: SliceIndex<[T]>;
fn remove_first_element(&mut self, element: T) -> bool
where T: PartialEq;
}