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

Method listIterator

lib/java/util/AbstractList.java:605–607  ·  view source on GitHub ↗

Returns a ListIterator on the elements of this list. The elements are iterated in the same order that they occur in the list. @return a ListIterator on the elements of this list @see ListIterator

()

Source from the content-addressed store, hash-verified

603 * @see ListIterator
604 */
605 public ListIterator<E> listIterator() {
606 return listIterator(0);
607 }
608
609 /**
610 * Returns a list iterator on the elements of this list. The elements are

Callers 3

indexOfMethod · 0.95
lastIndexOfMethod · 0.95
removeRangeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected