dsalgo 0.3.7

A package for Datastructures and Algorithms.
Documentation
pub(crate) trait Index<Idx>
where
    Idx: ?Sized,
{
    type Output: ?Sized;
    fn index(&self, index: Idx) -> &Self::Output;
}