MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / full

Method full

validating/CircularQueue.java:24–26  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

22 return !wrapped && in == out;
23 }
24 public boolean full() {
25 return wrapped && in == out;
26 }
27 public boolean isWrapped() { return wrapped; }
28 public void put(Object item) {
29 precondition(item != null, "put() null item");

Callers 3

putMethod · 0.95
invariantMethod · 0.95
dumpMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected