MCPcopy Index your code
hub / github.com/jankotek/mapdb / pollLast

Method pollLast

src/main/java/org/mapdb/BTreeMapJava.java:449–457  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

447 }
448
449 @Override
450 public E pollLast() {
451 while(true){
452 E e = m.lastKey2();
453 if(e==null || m.remove(e)!=null){
454 return e;
455 }
456 }
457 }
458
459 @Override
460 public Iterator<E> iterator() {

Calls 2

lastKey2Method · 0.65
removeMethod · 0.45