dsalgo 0.3.7

A package for Datastructures and Algorithms.
Documentation
pub trait Search<T> {
    type SearchFn = fn(&T) -> bool;
    fn search(&self, is_ok: SearchFn) -> Option<usize>;
}