addAll method

void addAll (
  1. Iterable<E> entries
)

Add entries to the end of the linked list.

Implementation

void addAll(Iterable<E> entries) {
  entries.forEach(add);
}