Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ReadyTalk/avian
/ ArrayDeque
Method
ArrayDeque
classpath/java/util/ArrayDeque.java:22–24 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
20
private
int
modCount;
21
22
public
ArrayDeque() {
23
this(16);
24
}
25
26
public
ArrayDeque(
int
intialSize) {
27
dataArray =
new
Object[intialSize];
Callers
nothing calls this directly
Calls
3
clear
Method · 0.95
addAll
Method · 0.95
size
Method · 0.65
Tested by
no test coverage detected