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

Method get

lib/java/util/AbstractSequentialList.java:52–59  ·  view source on GitHub ↗
(int location)

Source from the content-addressed store, hash-verified

50 }
51
52 @Override
53 public E get(int location) {
54 try {
55 return listIterator(location).next();
56 } catch (NoSuchElementException e) {
57 throw new IndexOutOfBoundsException();
58 }
59 }
60
61 @Override
62 public Iterator<E> iterator() {

Callers

nothing calls this directly

Calls 2

listIteratorMethod · 0.95
nextMethod · 0.65

Tested by

no test coverage detected