MCPcopy Index your code
hub / github.com/antlr/codebuff / toArrayList

Method toArrayList

output/java_guava/1.4.13/LocalCache.java:4537–4542  ·  view source on GitHub ↗
(Collection<E> c)

Source from the content-addressed store, hash-verified

4535 }
4536
4537 private static <E> ArrayList<E> toArrayList(Collection<E> c) {
4538 // Avoid calling ArrayList(Collection), which may call back into toArray.
4539 ArrayList<E> result = new ArrayList<E>(c.size());
4540 Iterators.addAll(result, c.iterator());
4541 return result;
4542 }
4543
4544 @WeakOuter
4545 final class KeySet extends AbstractCacheSet<K> {

Callers 2

toArrayMethod · 0.45
toArrayMethod · 0.45

Calls 3

addAllMethod · 0.95
sizeMethod · 0.65
iteratorMethod · 0.65

Tested by

no test coverage detected