MCPcopy Create free account
hub / github.com/codedecks-in/LeetCode-Solutions / isFull

Method isFull

Java/design-circular-deque.java:145–147  ·  view source on GitHub ↗

Checks whether the circular deque is full or not.

()

Source from the content-addressed store, hash-verified

143
144 /** Checks whether the circular deque is full or not. */
145 public boolean isFull() {
146 return (this.size == this.capacity);
147 }
148}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected