将iterable中的所有元素添加到队列的末尾。队列的长度通过iterable的长度扩展。
void addAll(Iterable<E> iterable) { for (final E value in iterable) { _sentinel._prepend(value, this); _elementCount++; } }