Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/jankotek/mapdb
/ pollFirst
Method
pollFirst
src/main/java/org/mapdb/BTreeMapJava.java:439–447 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
437
public
E last() {
return
m.lastKey(); }
438
439
@Override
440
public
E pollFirst() {
441
while
(true){
442
E e = m.firstKey2();
443
if
(e==null || m.remove(e)!=null){
444
return
e;
445
}
446
}
447
}
448
449
@Override
450
public
E pollLast() {
Callers
15
testEmpty
Method · 0.80
testSize
Method · 0.80
testAddAll5
Method · 0.80
testPollFirst
Method · 0.80
testPollLast
Method · 0.80
testContains
Method · 0.80
testRetainAll
Method · 0.80
testRemoveAll
Method · 0.80
testToArray
Method · 0.80
testToArray2
Method · 0.80
testEmpty
Method · 0.80
testAddAll5
Method · 0.80
Calls
2
firstKey2
Method · 0.65
remove
Method · 0.45
Tested by
15
testEmpty
Method · 0.64
testSize
Method · 0.64
testAddAll5
Method · 0.64
testPollFirst
Method · 0.64
testPollLast
Method · 0.64
testContains
Method · 0.64
testRetainAll
Method · 0.64
testRemoveAll
Method · 0.64
testToArray
Method · 0.64
testToArray2
Method · 0.64
testEmpty
Method · 0.64
testAddAll5
Method · 0.64