addAll method
- Iterable<
E> entries
Adds entries
to the end of the linked list.
Implementation
void addAll(Iterable<E> entries) {
entries.forEach(add);
}
Adds entries
to the end of the linked list.
void addAll(Iterable<E> entries) {
entries.forEach(add);
}