MCPcopy Create free account
hub / github.com/ReadyTalk/avian / first

Method first

classpath/java/util/TreeSet.java:43–47  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

41 }
42
43 public T first() {
44 if (isEmpty()) throw new NoSuchElementException();
45
46 return set.first().value().value;
47 }
48
49 public T last() {
50 if (isEmpty()) throw new NoSuchElementException();

Callers

nothing calls this directly

Calls 3

isEmptyMethod · 0.95
firstMethod · 0.65
valueMethod · 0.45

Tested by

no test coverage detected