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

Method getLast

classpath/java/util/AbstractDeque.java:75–84  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

73 }
74
75 @Override
76 public T getLast() {
77 T result = peekLast();
78
79 if (result == null) {
80 throw new NoSuchElementException();
81 }
82
83 return result;
84 }
85
86 @Override
87 public T peek() {

Callers

nothing calls this directly

Calls 1

peekLastMethod · 0.65

Tested by

no test coverage detected