MCPcopy Create free account
hub / github.com/antlr/codebuff / standardAddAll

Method standardAddAll

output/java_guava/1.4.16/ForwardingList.java:155–157  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 1

addAllMethod · 0.45

Calls 1

addAllImplMethod · 0.95

Tested by

no test coverage detected