pub type NeighborPriorityQueue<T> = BinaryHeap<NeighborsState<T>>;
Expand description

Type alias for priority queue used for nearest neighbor searches.

See: StaticAABB2DIndex::visit_neighbors_with_queue.