QuadTree<T> removeAll(List<T> data) { for (var i = 0, n = data.length; i < n; ++i) { remove(data[i]); } return this; }