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

Method pollLast

classpath/java/util/LinkedList.java:281–290  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

279 }
280
281 @Override
282 public T pollLast() {
283 if (rear != null) {
284 T v = rear.value;
285 remove(rear);
286 return v;
287 } else {
288 throw new NoSuchElementException();
289 }
290 }
291
292 @Override
293 public T removeLast() {

Callers 1

removeLastMethod · 0.95

Calls 1

removeMethod · 0.95

Tested by

no test coverage detected