assignAll method

void assignAll(
  1. Iterable<T> items
)

Implementation

void assignAll(final Iterable<T> items) {
  clear();
  addAll(items);
}