A sensible default implementation of #addAll(int, Collection), in terms of the add method of #listIterator(int). If you override #listIterator(int), you may wish to override #addAll(int, Collection) to forward to this implementation. @since 7.0
(int index, Iterable<? extends E> elements)
| 153 | |
| 154 | |
| 155 | protected boolean standardAddAll(int index, Iterable<? extends E> elements) { |
| 156 | return Lists.addAllImpl(this, index, elements); |
| 157 | } |
| 158 | |
| 159 | /** |
| 160 | * A sensible default implementation of {@link #indexOf}, in terms of {@link |