void addAll(Iterable<E> entries)

Add entries to the end of the linked list.

Source

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