MCPcopy Create free account
hub / github.com/davidgiven/luje / listIterator

Method listIterator

lib/java/util/AbstractList.java:302–313  ·  view source on GitHub ↗
(int location)

Source from the content-addressed store, hash-verified

300 }
301
302 @Override
303 public ListIterator<E> listIterator(int location) {
304 if (modCount == fullList.modCount) {
305 if (0 <= location && location <= size) {
306 return new SubAbstractListIterator<E>(fullList
307 .listIterator(location + offset), this, offset,
308 size);
309 }
310 throw new IndexOutOfBoundsException();
311 }
312 throw new ConcurrentModificationException();
313 }
314
315 @Override
316 public E remove(int location) {

Callers 1

iteratorMethod · 0.95

Calls 1

listIteratorMethod · 0.65

Tested by

no test coverage detected