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

Method pollLastEntry

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

Source from the content-addressed store, hash-verified

908 }
909
910 @Override
911 public Entry<K, V> pollLastEntry() {
912 while(true){
913 Entry<K, V> e = lastEntry();
914 if(e==null || remove(e.getKey(),e.getValue())){
915 return e;
916 }
917 }
918 }
919
920
921

Callers 10

testPollLastEntryMethod · 0.45
testPollLastEntryMethod · 0.45
testPollLastEntryMethod · 0.45
testPollLastEntryMethod · 0.45
testPollLastEntryMethod · 0.45
testPollLastEntryMethod · 0.45

Calls 3

lastEntryMethod · 0.95
removeMethod · 0.95
getKeyMethod · 0.80

Tested by 10

testPollLastEntryMethod · 0.36
testPollLastEntryMethod · 0.36
testPollLastEntryMethod · 0.36
testPollLastEntryMethod · 0.36
testPollLastEntryMethod · 0.36
testPollLastEntryMethod · 0.36