Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
put
Method · 0.95
invariant
Method · 0.95
dump
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected