dsalgo 0.3.7

A package for Datastructures and Algorithms.
Documentation
pub trait Insert<Idx: ?Sized = usize> {
    type Data;
    fn insert(&mut self, index: Idx, data: Self::Data);
}