MCPcopy 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

clearMethod · 0.95
addAllMethod · 0.95
sizeMethod · 0.65

Tested by

no test coverage detected