removeAll method

void removeAll(
  1. Iterable<T> objects
)

removes several cubits at once. See remove

Implementation

void removeAll(Iterable<T> objects) {
  for (T object in objects) {
    remove(object);
  }
}