[][src]Type Definition vrp_core::algorithms::dbscan::NeighborhoodFn

type NeighborhoodFn<'a, T> = Box<dyn Fn(&'a T, f64) -> Box<dyn Iterator<Item = &'a T> + 'a> + 'a>;

A function which returns neighbors of given item with given epsilon.