/**
* @see net.sf.jsi.SpatialIndex#nearestN(Point, gnu.trove.TIntProcedure, int, float)
*/
public void nearestN(Point p, final TIntProcedure v, int n, float furthestDistance) {
TIntArrayList nearestList = nearestN(p, n, furthestDistance);
nearestList.forEach(new TIntProcedure() {
public boolean execute(int id) {
v.execute(id);
return true;
}
});