Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ReadyTalk/avian
/ pollFirst
Method
pollFirst
classpath/java/util/LinkedList.java:249–258 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
247
}
248
249
@Override
250
public
T pollFirst() {
251
if
(front != null) {
252
T v = front.value;
253
remove(front);
254
return
v;
255
}
else
{
256
return
null;
257
}
258
}
259
260
@Override
261
public
T removeFirst() {
Callers
2
poll
Method · 0.95
removeFirst
Method · 0.95
Calls
1
remove
Method · 0.95
Tested by
no test coverage detected