queryWithVisitor method

void queryWithVisitor(
  1. double min,
  2. double max,
  3. ItemVisitor visitor
)

Implementation

void queryWithVisitor(double min, double max, ItemVisitor visitor) {
  if (isEmpty) return;
  index.query(min, max, visitor);
}